class Machete::Matchers::AnyMatcher

Public Instance Methods

==(other) click to toggle source
# File lib/machete/matchers.rb, line 168
def ==(other)
  other.instance_of?(self.class)
end
matches?(node) click to toggle source
# File lib/machete/matchers.rb, line 172
def matches?(node)
  true
end