Class: Querly::Pattern::Expr::ReceiverContext
- Defined in:
- lib/querly/pattern/expr.rb
Instance Attribute Summary collapse
-
#receiver ⇒ Object
readonly
Returns the value of attribute receiver.
Instance Method Summary collapse
-
#initialize(receiver:) ⇒ ReceiverContext
constructor
A new instance of ReceiverContext.
- #test_node(node) ⇒ Object
Methods inherited from Base
Constructor Details
#initialize(receiver:) ⇒ ReceiverContext
Returns a new instance of ReceiverContext.
276 277 278 |
# File 'lib/querly/pattern/expr.rb', line 276 def initialize(receiver:) @receiver = receiver end |
Instance Attribute Details
#receiver ⇒ Object (readonly)
Returns the value of attribute receiver.
274 275 276 |
# File 'lib/querly/pattern/expr.rb', line 274 def receiver @receiver end |
Instance Method Details
#test_node(node) ⇒ Object
280 281 282 283 284 285 286 |
# File 'lib/querly/pattern/expr.rb', line 280 def test_node(node) if receiver.test_node(node) true else node&.type == :send && test_node(node.children[0]) end end |