# File lib/fastri/ri_service.rb, line 88
    def get_matches(methods)
      catch(:MatchFinder_return) do
        methods.each do |name|
          matcher = @matchers[name]
          matcher.call(self) if matcher
        end
        []
      end
    end