Class: Parser::Source::Map::Collection
- Inherits:
-
Parser::Source::Map
- Object
- Parser::Source::Map
- Parser::Source::Map::Collection
- Defined in:
- lib/parser/source/map/collection.rb
Instance Attribute Summary collapse
- #begin ⇒ Object readonly
- #end ⇒ Object readonly
Attributes inherited from Parser::Source::Map
Instance Method Summary collapse
-
#initialize(begin_l, end_l, expression_l) ⇒ Collection
constructor
A new instance of Collection.
Methods inherited from Parser::Source::Map
#==, #column, #initialize_copy, #last_column, #last_line, #line, #to_hash, #with_expression
Constructor Details
#initialize(begin_l, end_l, expression_l) ⇒ Collection
Returns a new instance of Collection.
10 11 12 13 14 |
# File 'lib/parser/source/map/collection.rb', line 10 def initialize(begin_l, end_l, expression_l) @begin, @end = begin_l, end_l super(expression_l) end |
Instance Attribute Details
#begin ⇒ Object (readonly)
7 8 9 |
# File 'lib/parser/source/map/collection.rb', line 7 def begin @begin end |
#end ⇒ Object (readonly)
8 9 10 |
# File 'lib/parser/source/map/collection.rb', line 8 def end @end end |