# File lib/xml/xpath.rb, line 2624
    def each(node, visitor, &block)
      visitor.visit(node).children.each { |i| yield visitor.visit(i) }
    end