Method: Parser::Source::Map::For#initialize

Defined in:
lib/parser/source/map/for.rb

#initialize(keyword_l, in_l, begin_l, end_l, expression_l) ⇒ For

Returns a new instance of For.

[View source] [View on GitHub]

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