Class: Querly::Pattern::Expr::Ivar
- Defined in:
- lib/querly/pattern/expr.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name:) ⇒ Ivar
constructor
A new instance of Ivar.
- #test_node(node) ⇒ Object
Methods inherited from Base
Constructor Details
#initialize(name:) ⇒ Ivar
Returns a new instance of Ivar.
336 337 338 |
# File 'lib/querly/pattern/expr.rb', line 336 def initialize(name:) @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
334 335 336 |
# File 'lib/querly/pattern/expr.rb', line 334 def name @name end |
Instance Method Details
#test_node(node) ⇒ Object
340 341 342 343 344 |
# File 'lib/querly/pattern/expr.rb', line 340 def test_node(node) if node&.type == :ivar name.nil? || node.children.first == name end end |