Class: Parser::Source::Map::RescueBody

Inherits:
Parser::Source::Map show all
Defined in:
lib/parser/source/map/rescue_body.rb

Instance Attribute Summary collapse

Attributes inherited from Parser::Source::Map

#expression, #node

Instance Method Summary collapse

Methods inherited from Parser::Source::Map

#==, #column, #initialize_copy, #last_column, #last_line, #line, #to_hash, #with_expression

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

#assocObject (readonly)



8
9
10
# File 'lib/parser/source/map/rescue_body.rb', line 8

def assoc
  @assoc
end

#beginObject (readonly)



9
10
11
# File 'lib/parser/source/map/rescue_body.rb', line 9

def begin
  @begin
end

#keywordObject (readonly)



7
8
9
# File 'lib/parser/source/map/rescue_body.rb', line 7

def keyword
  @keyword
end