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, #line, #to_hash

Constructor Details

- (Variable) initialize(name_l, expression_l = name_l)

Returns a new instance of Variable



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

def initialize(name_l, expression_l=name_l)
  @name = name_l

  super(expression_l)
end

Instance Attribute Details

- (Object) name (readonly)



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

def name
  @name
end

- (Object) operator (readonly)



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

def operator
  @operator
end