Class: Parser::Source::Map::For
- Inherits:
-
Map
- Object
- Map
- Parser::Source::Map::For
- Defined in:
- lib/parser/source/map/for.rb
Instance Attribute Summary collapse
- #begin ⇒ Object readonly
- #end ⇒ Object readonly
- #in ⇒ Object readonly
- #keyword ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(keyword_l, in_l, begin_l, end_l, expression_l) ⇒ For
constructor
A new instance of For.
Constructor Details
#initialize(keyword_l, in_l, begin_l, end_l, expression_l) ⇒ For
Returns a new instance of For.
10 11 12 13 14 15 |
# File 'lib/parser/source/map/for.rb', line 10 def initialize(keyword_l, in_l, begin_l, end_l, expression_l) @keyword, @in = keyword_l, in_l @begin, @end = begin_l, end_l super(expression_l) end |
Instance Attribute Details
#begin ⇒ Object (readonly)
8 9 10 |
# File 'lib/parser/source/map/for.rb', line 8 def begin @begin end |
#end ⇒ Object (readonly)
8 9 10 |
# File 'lib/parser/source/map/for.rb', line 8 def end @end end |
#in ⇒ Object (readonly)
7 8 9 |
# File 'lib/parser/source/map/for.rb', line 7 def in @in end |
#keyword ⇒ Object (readonly)
7 8 9 |
# File 'lib/parser/source/map/for.rb', line 7 def keyword @keyword end |