# File lib/tree.rb, line 264
    def each &block
      yield self
      children { |child| child.each(&block) }
    end