dmd.visitor

Provides a visitor class visiting all AST nodes present in the compiler.

Members

Classes

SemanticTimePermissiveVisitor
class SemanticTimePermissiveVisitor

The PermissiveVisitor overrides the root AST nodes with empty visiting methods.

SemanticTimeTransitiveVisitor
class SemanticTimeTransitiveVisitor

The TransitiveVisitor implements the AST traversal logic for all AST nodes.

StoppableVisitor
class StoppableVisitor
Undocumented in source but is binding to C++. You might be able to learn more by searching the web for its name.
Visitor
class Visitor

Classic Visitor class which implements visit methods for all the AST nodes present in the compiler. The visit methods for AST nodes created at parse time are inherited while the visiting methods for AST nodes created at semantic time are implemented.

Meta