Class: Leftovers::Matchers::NodePath

Inherits:
Object
  • Object
show all
Includes:
ComparableInstance
Defined in:
lib/leftovers/matchers/node_path.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from ComparableInstance

#eql?, #hash

Constructor Details

#initialize(matcher) ⇒ NodePath

Returns a new instance of NodePath.



10
11
12
13
14
# File 'lib/leftovers/matchers/node_path.rb', line 10

def initialize(matcher)
  @matcher = matcher

  freeze
end

Instance Attribute Details

#matcherObject (readonly)

Returns the value of attribute matcher.



8
9
10
# File 'lib/leftovers/matchers/node_path.rb', line 8

def matcher
  @matcher
end

Instance Method Details

#===(node) ⇒ Object



16
17
18
# File 'lib/leftovers/matchers/node_path.rb', line 16

def ===(node)
  @matcher === node.path
end