Class: Parser::Source::Map::Condition
- Inherits:
-
Parser::Source::Map
show all
- Defined in:
- lib/parser/source/map/condition.rb
Instance Attribute Summary (collapse)
#expression, #node
Instance Method Summary
(collapse)
#==, #column, #line, #to_hash
Constructor Details
- (Condition) initialize(keyword_l, begin_l, else_l, end_l, expression_l)
Returns a new instance of Condition
10
11
12
13
14
15
|
# File 'lib/parser/source/map/condition.rb', line 10
def initialize(keyword_l, begin_l, else_l, end_l, expression_l)
@keyword = keyword_l
@begin, @else, @end = begin_l, else_l, end_l
super(expression_l)
end
|
Instance Attribute Details
- (Object) begin
6
7
8
|
# File 'lib/parser/source/map/condition.rb', line 6
def begin
@begin
end
|
- (Object) else
7
8
9
|
# File 'lib/parser/source/map/condition.rb', line 7
def else
@else
end
|
- (Object) end
8
9
10
|
# File 'lib/parser/source/map/condition.rb', line 8
def end
@end
end
|
- (Object) keyword
5
6
7
|
# File 'lib/parser/source/map/condition.rb', line 5
def keyword
@keyword
end
|