Class: Parser::Source::Map::Variable
- Inherits:
-
Parser::Source::Map
- Object
- Parser::Source::Map
- Parser::Source::Map::Variable
- Defined in:
- lib/parser/source/map/variable.rb
Instance Attribute Summary collapse
- #name ⇒ Object readonly
- #operator ⇒ Object readonly
Attributes inherited from Parser::Source::Map
Instance Method Summary collapse
-
#initialize(name_l, expression_l = name_l) ⇒ Variable
constructor
A new instance of Variable.
- #with_operator(operator_l) ⇒ Object private
Methods inherited from Parser::Source::Map
#==, #column, #initialize_copy, #last_column, #last_line, #line, #to_hash, #with_expression
Constructor Details
#initialize(name_l, expression_l = name_l) ⇒ Variable
Returns a new instance of Variable.
10 11 12 13 14 |
# File 'lib/parser/source/map/variable.rb', line 10 def initialize(name_l, expression_l=name_l) @name = name_l super(expression_l) end |
Instance Attribute Details
#name ⇒ Object (readonly)
7 8 9 |
# File 'lib/parser/source/map/variable.rb', line 7 def name @name end |
#operator ⇒ Object (readonly)
8 9 10 |
# File 'lib/parser/source/map/variable.rb', line 8 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.
19 20 21 |
# File 'lib/parser/source/map/variable.rb', line 19 def with_operator(operator_l) with { |map| map.update_operator(operator_l) } end |