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