Greetings,

I recently started using the XML::Xerces. There seems to be a descrpency between the 
parse_child_nodes routine and the documentation for it.

In the POD, it states:
---
  parse_child_nodes ($node, $process_node, $data)

    Call to parse the children of $node recursively. This is just
    like parse_nodes except that $node is not parsed.
---

In the routine:
---
sub parse_child_nodes {
  my ($child, $process_node, $data) = @_;

  while ( defined $child ) {
    my $nextchild = $child->getNextSibling ();
    XML::Xerces::DOMParse::parse_nodes ($child, $process_node, $data);
    $child = $nextchild;
  }
}
---

The POD states that the node passed to this routine does not get parsed. However, in 
the code, it does get parsed (it gets passed back to parse_nodes).


--
"After you finish the first 90% of a project, you have to finish the other 90%." 
    - Unknown 
--

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to