Minor cleanup

This commit is contained in:
Hackerpilot 2013-10-09 02:13:53 -07:00
parent 4a7f4b3da4
commit 982510c50c
3 changed files with 12 additions and 4 deletions

View File

@ -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);

View File

@ -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;
}
///

View File

@ -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;
}