Class: CodeTools::AST::SplatAssignment

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

Direct Known Subclasses

SplatArray, SplatWrapped

Instance Attribute Summary collapse

Attributes inherited from Node

#line

Instance Method Summary collapse

Methods inherited from Node

#ascii_graph, #attributes, #children, #defined, 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, value) ⇒ SplatAssignment

Returns a new instance of SplatAssignment.



344
345
346
347
# File 'lib/rubinius/code/ast/variables.rb', line 344

def initialize(line, value)
  @line = line
  @value = value
end

Instance Attribute Details

#valueObject

Returns the value of attribute value.



342
343
344
# File 'lib/rubinius/code/ast/variables.rb', line 342

def value
  @value
end

Instance Method Details

#bytecode(g) ⇒ Object



349
350
351
352
353
354
# File 'lib/rubinius/code/ast/variables.rb', line 349

def bytecode(g)
  pos(g)

  g.cast_array
  @value.bytecode(g)
end

#to_sexpObject



356
357
358
# File 'lib/rubinius/code/ast/variables.rb', line 356

def to_sexp
  @value.to_sexp
end