diff --git a/std/d/ast.d b/std/d/ast.d index d13026c..10f39b3 100755 --- a/std/d/ast.d +++ b/std/d/ast.d @@ -18,10 +18,11 @@ module std.d.ast; import std.d.lexer; +// TODO: Many of these classes can be simplified by using std.variant.Algebraic + /** * Implements the $(LINK2 http://en.wikipedia.org/wiki/Visitor_pattern, Visitor Pattern) - * for the various AST /// -classes + * for the various AST classes */ abstract class ASTVisitor {