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