class ActiveRecord::Associations::JoinDependency::JoinBase

:nodoc:
:nodoc:

def initialize(base_klass, table, children)

def initialize(base_klass, table, children)
  super(base_klass, children)
  @table = table
end

def match?(other)

def match?(other)
  return true if self == other
  super && base_klass == other.base_klass
end