Class: Parser::Source::Map::Send
- Inherits:
-
Map
- Object
- Map
- Parser::Source::Map::Send
- Defined in:
- lib/parser/source/map/send.rb
Instance Attribute Summary collapse
- #begin ⇒ Object readonly
- #dot ⇒ Object readonly
- #end ⇒ Object readonly
- #operator ⇒ Object readonly
- #selector ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(dot_l, selector_l, begin_l, end_l, expression_l) ⇒ Send
constructor
A new instance of Send.
- #with_operator(operator_l) ⇒ Object private
Constructor Details
#initialize(dot_l, selector_l, begin_l, end_l, expression_l) ⇒ Send
Returns a new instance of Send.
13 14 15 16 17 18 19 |
# File 'lib/parser/source/map/send.rb', line 13 def initialize(dot_l, selector_l, begin_l, end_l, expression_l) @dot = dot_l @selector = selector_l @begin, @end = begin_l, end_l super(expression_l) end |
Instance Attribute Details
#begin ⇒ Object (readonly)
10 11 12 |
# File 'lib/parser/source/map/send.rb', line 10 def begin @begin end |
#dot ⇒ Object (readonly)
7 8 9 |
# File 'lib/parser/source/map/send.rb', line 7 def dot @dot end |
#end ⇒ Object (readonly)
11 12 13 |
# File 'lib/parser/source/map/send.rb', line 11 def end @end end |
#operator ⇒ Object (readonly)
9 10 11 |
# File 'lib/parser/source/map/send.rb', line 9 def operator @operator end |
#selector ⇒ Object (readonly)
8 9 10 |
# File 'lib/parser/source/map/send.rb', line 8 def selector @selector 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.
24 25 26 |
# File 'lib/parser/source/map/send.rb', line 24 def with_operator(operator_l) with { |map| map.update_operator(operator_l) } end |