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
340 341 342 |
# File 'lib/querly/pattern/expr.rb', line 340 def initialize(name:) @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
338 339 340 |
# File 'lib/querly/pattern/expr.rb', line 338 def name @name end |
Instance Method Details
#test_node(node) ⇒ Object
344 345 346 347 348 |
# File 'lib/querly/pattern/expr.rb', line 344 def test_node(node) if node&.type == :ivar name.nil? || node.children.first == name end end |