Class: CodeTools::AST::DefaultArguments
- Defined in:
- lib/rubinius/ast/definitions.rb
Instance Attribute Summary collapse
-
#arguments ⇒ Object
Returns the value of attribute arguments.
-
#names ⇒ Object
Returns the value of attribute names.
Attributes inherited from Node
Instance Method Summary collapse
- #bytecode(g) ⇒ Object
-
#initialize(line, block) ⇒ DefaultArguments
constructor
A new instance of DefaultArguments.
- #map_arguments(scope) ⇒ Object
- #to_sexp ⇒ Object
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.
549 550 551 552 553 554 |
# File 'lib/rubinius/ast/definitions.rb', line 549 def initialize(line, block) @line = line array = block.array @names = array.map { |a| a.name } @arguments = array end |
Instance Attribute Details
#arguments ⇒ Object
Returns the value of attribute arguments.
547 548 549 |
# File 'lib/rubinius/ast/definitions.rb', line 547 def arguments @arguments end |
#names ⇒ Object
Returns the value of attribute names.
547 548 549 |
# File 'lib/rubinius/ast/definitions.rb', line 547 def names @names end |
Instance Method Details
#bytecode(g) ⇒ Object
560 561 562 563 564 565 566 567 568 569 570 571 |
# File 'lib/rubinius/ast/definitions.rb', line 560 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
556 557 558 |
# File 'lib/rubinius/ast/definitions.rb', line 556 def map_arguments(scope) @arguments.each { |var| scope.assign_local_reference var } end |
#to_sexp ⇒ Object
573 574 575 |
# File 'lib/rubinius/ast/definitions.rb', line 573 def to_sexp @arguments.map { |x| x.to_sexp } end |