Class: CodeTools::AST::BlockPass19

Inherits:
BlockPass show all
Defined in:
lib/rubinius/code/ast/sends.rb

Instance Attribute Summary collapse

Attributes inherited from BlockPass

#body

Attributes inherited from Node

#line

Instance Method Summary collapse

Methods inherited from BlockPass

#assignment_bytecode, #bytecode, #convert, #to_sexp

Methods inherited from Node

#ascii_graph, #attributes, #bytecode, #children, #defined, match_arguments?, match_send?, #new_block_generator, #new_generator, #node_name, #or_bytecode, #pos, #set_child, #to_sexp, #transform, transform, transform_comment, transform_kind, transform_kind=, transform_name, #value_defined, #visit, #walk

Constructor Details

#initialize(line, arguments, body) ⇒ BlockPass19

Returns a new instance of BlockPass19.



434
435
436
437
# File 'lib/rubinius/code/ast/sends.rb', line 434

def initialize(line, arguments, body)
  super(line, body)
  @arguments = arguments
end

Instance Attribute Details

#argumentsObject

Returns the value of attribute arguments.



432
433
434
# File 'lib/rubinius/code/ast/sends.rb', line 432

def arguments
  @arguments
end