Implements a variation of the visitor pattern.
Inherited by classes that need to traverse a D syntax tree and do computations, transformations and other things on it.
Calls the appropriate visit() method for a node.
Allows calling the visit() method with a null node.
Called by visit() methods that were not overridden.
See Implementation
Implements a variation of the visitor pattern.
Inherited by classes that need to traverse a D syntax tree and do computations, transformations and other things on it.