Class: Rubinius::AST::BlockPass19

Inherits:
BlockPass show all
Defined in:
lib/compiler/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

#convert, #to_sexp

Methods inherited from Node

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

Constructor Details

#initialize(line, arguments, body) ⇒ BlockPass19

Returns a new instance of BlockPass19.



177
178
179
180
# File 'lib/compiler/ast/sends.rb', line 177

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

Instance Attribute Details

#argumentsObject

Returns the value of attribute arguments.



175
176
177
# File 'lib/compiler/ast/sends.rb', line 175

def arguments
  @arguments
end