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, #initialize_copy, #last_column, #last_line, #line, #to_hash, #with_expression

Constructor Details

#initialize(dot_l, selector_l, begin_l, end_l, expression_l) ⇒ Send

Returns a new instance of Send.



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

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

#beginObject (readonly)



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

def begin
  @begin
end

#dotObject (readonly)



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

def dot
  @dot
end

#endObject (readonly)



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

def end
  @end
end

#operatorObject (readonly)



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

def operator
  @operator
end

#selectorObject (readonly)



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

def selector
  @selector
end

Instance Method Details

#with_operator(operator_l) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



24
25
26
# File 'lib/parser/source/map/send.rb', line 24

def with_operator(operator_l)
  with { |map| map.update_operator(operator_l) }
end