Class: Parser::Source::Map::For

Inherits:
Parser::Source::Map show all
Defined in:
lib/parser/source/map/for.rb

Instance Attribute Summary (collapse)

Attributes inherited from Parser::Source::Map

#expression, #node

Instance Method Summary (collapse)

Methods inherited from Parser::Source::Map

#==, #column, #line, #to_hash

Constructor Details

- (For) initialize(keyword_l, in_l, begin_l, end_l, expression_l)

Returns a new instance of For



8
9
10
11
12
13
# 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

Instance Attribute Details

- (Object) begin (readonly)



6
7
8
# File 'lib/parser/source/map/for.rb', line 6

def begin
  @begin
end

- (Object) end (readonly)



6
7
8
# File 'lib/parser/source/map/for.rb', line 6

def end
  @end
end

- (Object) in (readonly)



5
6
7
# File 'lib/parser/source/map/for.rb', line 5

def in
  @in
end

- (Object) keyword (readonly)



5
6
7
# File 'lib/parser/source/map/for.rb', line 5

def keyword
  @keyword
end