Class: Parser::Source::Map::Index
- Inherits:
-
Map
- Object
- Map
- Parser::Source::Map::Index
- Defined in:
- lib/parser/source/map/index.rb
Instance Attribute Summary collapse
- #begin ⇒ Object readonly
- #end ⇒ Object readonly
- #operator ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(begin_l, end_l, expression_l) ⇒ Index
constructor
A new instance of Index.
- #with_operator(operator_l) ⇒ Object private
Constructor Details
#initialize(begin_l, end_l, expression_l) ⇒ Index
Returns a new instance of Index.
11 12 13 14 15 16 |
# File 'lib/parser/source/map/index.rb', line 11 def initialize(begin_l, end_l, expression_l) @begin, @end = begin_l, end_l @operator = nil super(expression_l) end |
Instance Attribute Details
#begin ⇒ Object (readonly)
7 8 9 |
# File 'lib/parser/source/map/index.rb', line 7 def begin @begin end |
#end ⇒ Object (readonly)
8 9 10 |
# File 'lib/parser/source/map/index.rb', line 8 def end @end end |
#operator ⇒ Object (readonly)
9 10 11 |
# File 'lib/parser/source/map/index.rb', line 9 def operator @operator end |
Instance Method Details
#with_operator(operator_l) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
21 22 23 |
# File 'lib/parser/source/map/index.rb', line 21 def with_operator(operator_l) with { |map| map.update_operator(operator_l) } end |