The superclass of all parse tree nodes. Every Node contains source
information and can accept a NodeVisitor.
author: Brian S O'Neill version: 25 , 9/07/00 See Also:NodeVisitor
Every subclass of Node must override this method with the following:
return visitor.visit(this).
Parameters: visitor - A visitor of this Node Node The Node returned by the visitor See Also:NodeVisitor