Class: Rubinius::AST::EndData

Inherits:
Node
  • Object
show all
Defined in:
lib/compiler/ast/data.rb

Instance Attribute Summary collapse

Attributes inherited from Node

#line

Instance Method Summary collapse

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(offset, body) ⇒ EndData

Returns a new instance of EndData.



8
9
10
11
# File 'lib/compiler/ast/data.rb', line 8

def initialize(offset, body)
  @offset = offset
  @body = body || NilLiteral.new(1)
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



6
7
8
# File 'lib/compiler/ast/data.rb', line 6

def data
  @data
end