# File lib/tree.rb, line 417
    def <=>(other)
      return +1 if other == nil
      self.name <=> other.name
    end