# File ../lib/fox/core.rb, line 411
    def each_child
      child = self.first
      while child
        yield child
        child = child.next
      end
    end