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