class CodeTools::AST::SplatArray

Public Class Methods

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

Public Instance Methods

bytecode(g) click to toggle source
# File lib/rubinius/code/ast/variables.rb, line 367
def bytecode(g)
  pos(g)

  g.make_array @size

  @value.bytecode(g)
end
to_sexp() click to toggle source
# File lib/rubinius/code/ast/variables.rb, line 375
def to_sexp
  @value.to_sexp
end