Class: Querly::Pattern::Expr::ReceiverContext

Inherits:
Base
  • Object
show all
Defined in:
lib/querly/pattern/expr.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#==, #=~, #attributes

Constructor Details

#initialize(receiver:) ⇒ ReceiverContext



272
273
274
# File 'lib/querly/pattern/expr.rb', line 272

def initialize(receiver:)
  @receiver = receiver
end

Instance Attribute Details

#receiverObject (readonly)

Returns the value of attribute receiver.



270
271
272
# File 'lib/querly/pattern/expr.rb', line 270

def receiver
  @receiver
end

Instance Method Details

#test_node(node) ⇒ Object



276
277
278
279
280
281
282
# File 'lib/querly/pattern/expr.rb', line 276

def test_node(node)
  if receiver.test_node(node)
    true
  else
    node&.type == :send && test_node(node.children[0])
  end
end