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
272 273 274 |
# File 'lib/querly/pattern/expr.rb', line 272 def initialize(receiver:) @receiver = receiver end |
Instance Attribute Details
#receiver ⇒ Object (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 |