class CodeTools::AST::PostArg

Attributes

into[RW]
rest[RW]

Public Class Methods

new(line, into, rest) click to toggle source
# File lib/rubinius/code/ast/variables.rb, line 533
def initialize(line, into, rest)
  @line = line
  @into = into
  @rest = rest
end