class CodeTools::AST::InstanceVariableAssignment

Public Instance Methods

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

  pos(g)
  g.set_ivar @name
end
sexp_name() click to toggle source
# File lib/rubinius/code/ast/variables.rb, line 463
def sexp_name
  :iasgn
end