Class: Parser::Source::Map::Condition
- Inherits:
-
Map
- Object
- Map
- Parser::Source::Map::Condition
- Defined in:
- lib/parser/source/map/condition.rb
Instance Attribute Summary collapse
- #begin ⇒ Object readonly
- #else ⇒ Object readonly
- #end ⇒ Object readonly
- #keyword ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(keyword_l, begin_l, else_l, end_l, expression_l) ⇒ Condition
constructor
A new instance of Condition.
Constructor Details
#initialize(keyword_l, begin_l, else_l, end_l, expression_l) ⇒ Condition
Returns a new instance of Condition.
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
#begin ⇒ Object (readonly)
8 9 10 |
# File 'lib/parser/source/map/condition.rb', line 8 def begin @begin end |
#else ⇒ Object (readonly)
9 10 11 |
# File 'lib/parser/source/map/condition.rb', line 9 def else @else end |
#end ⇒ Object (readonly)
10 11 12 |
# File 'lib/parser/source/map/condition.rb', line 10 def end @end end |
#keyword ⇒ Object (readonly)
7 8 9 |
# File 'lib/parser/source/map/condition.rb', line 7 def keyword @keyword end |