Home | History | Annotate | Download | only in dmd

Lines Matching refs:AST

2  * A visitor that facilitates the traversal of subsets of the AST.
13 * that assert(0) in order to facilitate the traversal of subsets of the AST.
16 extern(C++) class PermissiveVisitor(AST): ParseTimeVisitor!AST
18 alias visit = ParseTimeVisitor!AST.visit;
20 override void visit(AST.Dsymbol){}
21 override void visit(AST.Parameter){}
22 override void visit(AST.Statement){}
23 override void visit(AST.Type){}
24 override void visit(AST.Expression){}
25 override void visit(AST.TemplateParameter){}
26 override void visit(AST.Condition){}
27 override void visit(AST.Initializer){}