Class: Rubinius::ToolSet.current::TS::AST::DefaultArguments

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

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, block) ⇒ DefaultArguments

Returns a new instance of DefaultArguments.



627
628
629
630
631
632
# File 'lib/rubinius/ast/definitions.rb', line 627

def initialize(line, block)
  @line = line
  array = block.array
  @names = array.map { |a| a.name }
  @arguments = array
end

Instance Attribute Details

#argumentsObject

Returns the value of attribute arguments.



625
626
627
# File 'lib/rubinius/ast/definitions.rb', line 625

def arguments
  @arguments
end

#namesObject

Returns the value of attribute names.



625
626
627
# File 'lib/rubinius/ast/definitions.rb', line 625

def names
  @names
end

Instance Method Details

#bytecode(g) ⇒ Object



638
639
640
641
642
643
644
645
646
647
648
649
# File 'lib/rubinius/ast/definitions.rb', line 638

def bytecode(g)
  @arguments.each do |arg|
    done = g.new_label

    g.passed_arg arg.variable.slot
    g.git done
    arg.bytecode(g)
    g.pop

    done.set!
  end
end

#map_arguments(scope) ⇒ Object



634
635
636
# File 'lib/rubinius/ast/definitions.rb', line 634

def map_arguments(scope)
  @arguments.each { |var| scope.assign_local_reference var }
end

#to_sexpObject



651
652
653
# File 'lib/rubinius/ast/definitions.rb', line 651

def to_sexp
  @arguments.map { |x| x.to_sexp }
end