# File lib/rdoc/constant.rb, line 37
  def <=> other
    return unless self.class === other

    [parent_name, name] <=> [other.parent_name, other.name]
  end