class RSpec::Matchers::BuiltIn::OperatorMatcher

def get(klass, operator)

def get(klass, operator)
  klass.ancestors.each { |ancestor|
    matcher = registry[ancestor] && registry[ancestor][operator]
    return matcher if matcher
  }
  nil
end