Use better lexing behavior for sloc and tokenCount options

This commit is contained in:
Hackerpilot 2014-06-09 16:21:02 -07:00
parent 6e40c41094
commit b29a7d8994
1 changed files with 3 additions and 3 deletions

6
main.d
View File

@ -150,9 +150,9 @@ int run(string[] args)
if (usingStdin)
{
LexerConfig config;
config.whitespaceBehavior = WhitespaceBehavior.include;
config.whitespaceBehavior = WhitespaceBehavior.skip;
config.stringBehavior = StringBehavior.source;
config.commentBehavior = CommentBehavior.include;
config.commentBehavior = CommentBehavior.attach;
auto tokens = byToken(readStdin(), config, cache);
if (tokenCount)
printTokenCount(stdout, "stdin", tokens);
@ -168,7 +168,7 @@ int run(string[] args)
LexerConfig config;
config.whitespaceBehavior = WhitespaceBehavior.skip;
config.stringBehavior = StringBehavior.source;
config.commentBehavior = CommentBehavior.include;
config.commentBehavior = CommentBehavior.attach;
auto tokens = byToken(readFile(f), config, cache);
if (tokenCount)
count += printTokenCount(stdout, f, tokens);