Class: Parser::Source::Map::Index

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

Instance Attribute Summary collapse

Attributes inherited from Parser::Source::Map

#expression, #node

Instance Method Summary collapse

Methods inherited from Parser::Source::Map

#==, #column, #last_column, #last_line, #line, #to_hash

Constructor Details

#initialize(begin_l, end_l, expression_l) ⇒ Index

Returns a new instance of Index.



11
12
13
14
15
16
# File 'lib/parser/source/map/index.rb', line 11

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

  super(expression_l)
end

Instance Attribute Details

#beginObject (readonly)



7
8
9
# File 'lib/parser/source/map/index.rb', line 7

def begin
  @begin
end

#endObject (readonly)



8
9
10
# File 'lib/parser/source/map/index.rb', line 8

def end
  @end
end

#operatorObject (readonly)



9
10
11
# File 'lib/parser/source/map/index.rb', line 9

def operator
  @operator
end