# File lib/apotomo/widget/tree_node.rb, line 72
    def each(&block)
      yield self
      children { |child| child.each(&block) }
    end