Class: Querly::Pattern::Expr::Ivar

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(name:) ⇒ Ivar



340
341
342
# File 'lib/querly/pattern/expr.rb', line 340

def initialize(name:)
  @name = name
end

Instance Attribute Details

#nameObject (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