Class: Rubinius::ToolSet.current::TS::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.



310
311
312
313
314
# File 'lib/rubinius/ast/operators.rb', line 310

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

Instance Attribute Details

#leftObject

Returns the value of attribute left.



308
309
310
# File 'lib/rubinius/ast/operators.rb', line 308

def left
  @left
end

#rightObject

Returns the value of attribute right.



308
309
310
# File 'lib/rubinius/ast/operators.rb', line 308

def right
  @right
end

Instance Method Details

#bytecode(g) ⇒ Object



316
317
318
319
320
321
322
323
324
325
326
# File 'lib/rubinius/ast/operators.rb', line 316

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



328
329
330
# File 'lib/rubinius/ast/operators.rb', line 328

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

#sexp_nameObject



332
333
334
# File 'lib/rubinius/ast/operators.rb', line 332

def sexp_name
  :op_asgn_and
end

#to_sexpObject



336
337
338
# File 'lib/rubinius/ast/operators.rb', line 336

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