From 982510c50c9b59c70619a80c771b202c5db12be1 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Wed, 9 Oct 2013 02:13:53 -0700 Subject: [PATCH] Minor cleanup --- ctags.d | 2 +- stdx/d/ast.d | 9 +++++++-- stdx/d/parser.d | 5 ++++- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ctags.d b/ctags.d index 006341f..d29515d 100644 --- a/ctags.d +++ b/ctags.d @@ -26,7 +26,7 @@ void printCtags(File output, string[] fileNames) f.rawRead(bytes); LexerConfig config; auto tokens = byToken(bytes, config); - Module m = parseModule(tokens.array(), fileName); + Module m = parseModule(tokens.array(), fileName, &doNothing); auto printer = new CTagsPrinter; printer.fileName = fileName; printer.visit(m); diff --git a/stdx/d/ast.d b/stdx/d/ast.d index e8446e4..4ca8f64 100644 --- a/stdx/d/ast.d +++ b/stdx/d/ast.d @@ -1064,6 +1064,7 @@ public: mixin (visitIfNotNull!(functionBody)); } /** */ FunctionBody functionBody; + /** */ size_t location; } /// @@ -2050,6 +2051,7 @@ public: mixin (visitIfNotNull!(functionBody)); } /** */ FunctionBody functionBody; + /** */ size_t location; } /// @@ -2061,6 +2063,7 @@ public: mixin (visitIfNotNull!(functionBody)); } /** */ FunctionBody functionBody; + /** */ size_t location; } /// @@ -2146,6 +2149,7 @@ public: mixin (visitIfNotNull!(functionBody)); } /** */ FunctionBody functionBody; + /** */ size_t location; } /// @@ -2157,6 +2161,7 @@ public: mixin (visitIfNotNull!(functionBody)); } /** */ FunctionBody functionBody; + /** */ size_t location; } /// @@ -2271,11 +2276,11 @@ class Symbol : ASTNode public: override void accept(ASTVisitor visitor) { - mixin (visitIfNotNull!(dot, identifierOrTemplateChain)); + mixin (visitIfNotNull!(identifierOrTemplateChain)); } /** */ IdentifierOrTemplateChain identifierOrTemplateChain; - /** */ Token dot; + /** */ bool dot; } /// diff --git a/stdx/d/parser.d b/stdx/d/parser.d index a0761d2..5ecc100 100644 --- a/stdx/d/parser.d +++ b/stdx/d/parser.d @@ -4722,7 +4722,10 @@ q{(int a, ...) mixin(traceEnterAndExit!(__FUNCTION__)); auto node = new Symbol; if (currentIs(TokenType.dot)) - node.dot = advance(); + { + node.dot = true; + advance(); + } node.identifierOrTemplateChain = parseIdentifierOrTemplateChain(); return node; }