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