Class: Parser::Source::Map::Collection

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

Instance Attribute Summary collapse

Attributes inherited from Parser::Source::Map

#expression

Instance Method Summary collapse

Methods inherited from Parser::Source::Map

#line, #to_hash, #update_expression, #with, #with_expression

Constructor Details

#initialize(begin_l, end_l, expression_l) ⇒ Collection

Returns a new instance of Collection.



8
9
10
11
12
# File 'lib/parser/source/map/collection.rb', line 8

def initialize(begin_l, end_l, expression_l)
  @begin, @end = begin_l, end_l

  super(expression_l)
end

Instance Attribute Details

#beginObject (readonly)

Returns the value of attribute begin.



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

def begin
  @begin
end

#endObject (readonly)

Returns the value of attribute end.



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

def end
  @end
end