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