Class: Parser::Source::Map::For
Instance Attribute Summary collapse
#expression, #node
Instance Method Summary
collapse
#==, #column, #last_column, #last_line, #line, #to_hash
Constructor Details
permalink
#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
|
Instance Attribute Details
[
View on GitHub]
8
9
10
|
# File 'lib/parser/source/map/for.rb', line 8
def begin
@begin
end
|
[
View on GitHub]
8
9
10
|
# File 'lib/parser/source/map/for.rb', line 8
def end
@end
end
|
[
View on GitHub]
7
8
9
|
# File 'lib/parser/source/map/for.rb', line 7
def in
@in
end
|
[
View on GitHub]
7
8
9
|
# File 'lib/parser/source/map/for.rb', line 7
def keyword
@keyword
end
|