Class: CodeTools::AST::OpAssignAnd

Inherits:
Node
  • Object
show all
Defined in:
lib/rubinius/ast/operators.rb

Direct Known Subclasses

OpAssignOr

Instance Attribute Summary collapse

Attributes inherited from Node

#line

Instance Method Summary collapse

Methods inherited from Node

#ascii_graph, #attributes, #children, match_arguments?, match_send?, #new_block_generator, #new_generator, #node_name, #or_bytecode, #pos, #set_child, transform, #transform, transform_comment, transform_kind, transform_kind=, transform_name, #value_defined, #visit, #walk

Constructor Details

#initialize(line, left, right) ⇒ OpAssignAnd

Returns a new instance of OpAssignAnd.



408
409
410
411
412
# File 'lib/rubinius/ast/operators.rb', line 408

def initialize(line, left, right)
  @line = line
  @left = left
  @right = right
end

Instance Attribute Details

#leftObject

Returns the value of attribute left.



406
407
408
# File 'lib/rubinius/ast/operators.rb', line 406

def left
  @left
end

#rightObject

Returns the value of attribute right.



406
407
408
# File 'lib/rubinius/ast/operators.rb', line 406

def right
  @right
end

Instance Method Details

#bytecode(g) ⇒ Object



414
415
416
417
418
419
420
421
422
423
424
# File 'lib/rubinius/ast/operators.rb', line 414

def bytecode(g)
  pos(g)

  @left.bytecode(g)
  lbl = g.new_label
  g.dup
  g.gif lbl
  g.pop
  @right.bytecode(g)
  lbl.set!
end

#defined(g) ⇒ Object



426
427
428
# File 'lib/rubinius/ast/operators.rb', line 426

def defined(g)
  g.push_literal "assignment"
end

#sexp_nameObject



430
431
432
# File 'lib/rubinius/ast/operators.rb', line 430

def sexp_name
  :op_asgn_and
end

#to_sexpObject



434
435
436
# File 'lib/rubinius/ast/operators.rb', line 434

def to_sexp
  [sexp_name, @left.to_sexp, @right.to_sexp]
end