Class: CodeTools::AST::DefaultArguments

Inherits:
Node
  • Object
show all
Defined in:
lib/rubinius/code/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.



577
578
579
580
581
582
# File 'lib/rubinius/code/ast/definitions.rb', line 577

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.



575
576
577
# File 'lib/rubinius/code/ast/definitions.rb', line 575

def arguments
  @arguments
end

#namesObject

Returns the value of attribute names.



575
576
577
# File 'lib/rubinius/code/ast/definitions.rb', line 575

def names
  @names
end

Instance Method Details

#bytecode(g) ⇒ Object



588
589
590
591
592
593
594
595
596
597
598
599
# File 'lib/rubinius/code/ast/definitions.rb', line 588

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

    arg.variable.get_bytecode(g)
    g.goto_if_not_undefined done
    arg.bytecode(g)
    g.pop

    done.set!
  end
end

#map_arguments(scope) ⇒ Object



584
585
586
# File 'lib/rubinius/code/ast/definitions.rb', line 584

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

#to_sexpObject



601
602
603
# File 'lib/rubinius/code/ast/definitions.rb', line 601

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