dmd.visitor
Provides a visitor class visiting all AST nodes present in the compiler.
License
Source: visitor.d
Documentation: https://dlang.org/phobos/dmd_visitor.html
-
Declaration
classVisitor: dmd.parsetimevisitor.ParseTimeVisitor!(ASTCodegen).ParseTimeVisitor;Classic
Visitorclass 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. -
Declaration
classSemanticTimePermissiveVisitor: dmd.visitor.Visitor;The PermissiveVisitor overrides the root AST nodes with empty visiting methods.
-
Declaration
classSemanticTimeTransitiveVisitor: dmd.visitor.SemanticTimePermissiveVisitor;The TransitiveVisitor implements the AST traversal logic for all AST nodes.