match?(other)
public

No documentation available.

# File activerecord/lib/active_record/associations/join_dependency/join_base.rb, line 16
        def match?(other)
          return true if self == other
          super && base_klass == other.base_klass
        end