visitNodeFallback method
The fallback handler if the more specific visit method hasn't been overriden. Only use this from a subclass of TreeVisitor, otherwise call visit instead.
Implementation
void visitNodeFallback(Node node) => visitChildren(node);