Class: Parser::Source::Map::Operator

Inherits:
Parser::Source::Map show all
Defined in:
lib/parser/source/map/operator.rb

Instance Attribute Summary (collapse)

Attributes inherited from Parser::Source::Map

#expression, #node

Instance Method Summary (collapse)

Methods inherited from Parser::Source::Map

#==, #column, #line, #to_hash

Constructor Details

- (Operator) initialize(operator, expression)

Returns a new instance of Operator



7
8
9
10
11
# File 'lib/parser/source/map/operator.rb', line 7

def initialize(operator, expression)
  @operator = operator

  super(expression)
end

Instance Attribute Details

- (Object) operator (readonly)



5
6
7
# File 'lib/parser/source/map/operator.rb', line 5

def operator
  @operator
end