Class: Parser::Source::Map::Send

Inherits:
Parser::Source::Map show all
Defined in:
lib/parser/source/map/send.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

- (Send) initialize(dot_l, selector_l, begin_l, end_l, expression_l)

Returns a new instance of Send



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

def initialize(dot_l, selector_l, begin_l, end_l, expression_l)
  @dot         = dot_l
  @selector    = selector_l
  @begin, @end = begin_l, end_l

  super(expression_l)
end

Instance Attribute Details

- (Object) begin (readonly)



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

def begin
  @begin
end

- (Object) dot (readonly)



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

def dot
  @dot
end

- (Object) end (readonly)



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

def end
  @end
end

- (Object) operator (readonly)



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

def operator
  @operator
end

- (Object) selector (readonly)



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

def selector
  @selector
end