Class: Parser::Source::Map::Condition
Instance Attribute Summary collapse
#expression, #node
Instance Method Summary
collapse
#==, #column, #initialize_copy, #last_column, #last_line, #line, #to_hash, #with_expression
Constructor Details
permalink
#initialize(keyword_l, begin_l, else_l, end_l, expression_l) ⇒ Condition
Returns a new instance of Condition.
[View source]
12
13
14
15
16
17
|
# File 'lib/parser/source/map/condition.rb', line 12
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
8
9
10
|
# File 'lib/parser/source/map/condition.rb', line 8
def begin
@begin
end
|
9
10
11
|
# File 'lib/parser/source/map/condition.rb', line 9
def else
@else
end
|
10
11
12
|
# File 'lib/parser/source/map/condition.rb', line 10
def end
@end
end
|
7
8
9
|
# File 'lib/parser/source/map/condition.rb', line 7
def keyword
@keyword
end
|