class CodeTools::AST::EmptyArray

Public Instance Methods

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

  g.make_array 0
end
defined(g) click to toggle source
# File lib/rubinius/code/ast/literals.rb, line 50
def defined(g)
  g.push_literal "expression"
end
to_sexp() click to toggle source
# File lib/rubinius/code/ast/literals.rb, line 54
def to_sexp
  [:array]
end