Class: Parser::Source::Map::Variable

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

Instance Attribute Summary collapse

Attributes inherited from Parser::Source::Map

#expression, #node

Instance Method Summary collapse

Methods inherited from Parser::Source::Map

#==, #column, #last_column, #last_line, #line, #to_hash

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

#nameObject (readonly)



7
8
9
# File 'lib/parser/source/map/variable.rb', line 7

def name
  @name
end

#operatorObject (readonly)



8
9
10
# File 'lib/parser/source/map/variable.rb', line 8

def operator
  @operator
end