Class: Parser::Source::Map::For
Instance Attribute Summary collapse
#expression, #node
Instance Method Summary
collapse
#==, #column, #initialize_copy, #last_column, #last_line, #line, #to_hash, #with_expression
Constructor Details
#initialize(keyword_l, in_l, begin_l, end_l, expression_l) ⇒ For
Returns a new instance of For.
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
#begin ⇒ Object
8
9
10
|
# File 'lib/parser/source/map/for.rb', line 8
def begin
@begin
end
|
#end ⇒ Object
8
9
10
|
# File 'lib/parser/source/map/for.rb', line 8
def end
@end
end
|
#in ⇒ Object
7
8
9
|
# File 'lib/parser/source/map/for.rb', line 7
def in
@in
end
|
#keyword ⇒ Object
7
8
9
|
# File 'lib/parser/source/map/for.rb', line 7
def keyword
@keyword
end
|