class Parser::Source::Map::Condition

Attributes

begin[R]
else[R]
end[R]
keyword[R]

Public Class Methods

new(keyword_l, begin_l, else_l, end_l, expression_l) click to toggle source
Calls superclass method Parser::Source::Map::new
# File lib/parser/source/map/condition.rb, line 10
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