class Parser::Source::Map::For
Attributes
begin[R]
end[R]
in[R]
keyword[R]
Public Class Methods
new(keyword_l, in_l, begin_l, end_l, expression_l)
click to toggle source
Calls superclass method
Parser::Source::Map::new
# File lib/parser/source/map/for.rb, line 8 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