Fixed filtering of comments, whitespace, etc.

This commit is contained in:
Hackerpilot 2013-01-23 13:36:32 -08:00
parent bd97d1b393
commit f4b001f623
1 changed files with 36 additions and 32 deletions

View File

@ -206,10 +206,39 @@ class TokenRange(R) : InputRange!(Token)
return result;
}
/**
* Removes the current token from the range
*/
override void popFront()
{
// Filter out tokens we don't care about
loop: do
{
advance();
switch (current.type)
{
case TokenType.Comment:
if (iterStyle & IterationStyle.IncludeComments)
break loop;
break;
case TokenType.Whitespace:
if (iterStyle & IterationStyle.IncludeWhitespace)
break loop;
break;
case TokenType.SpecialTokenSequence:
if (iterStyle & IterationStyle.IncludeSpecialTokens)
break loop;
break;
default:
break loop;
}
}
while (!empty());
}
private:
/**
* Advances the range to the next token
*/
void advance()
{
if (range.empty)
{
@ -221,16 +250,11 @@ class TokenRange(R) : InputRange!(Token)
current.lineNumber = lineNumber;
current.startIndex = index;
while (std.uni.isWhite(range.front))
{
if (iterStyle == IterationStyle.Everything)
if (std.uni.isWhite(range.front))
{
current = lexWhitespace(range, index, lineNumber);
return;
}
else
lexWhitespace(range, index, lineNumber);
}
outer: switch (range.front)
{
mixin(generateCaseTrie(
@ -338,15 +362,6 @@ class TokenRange(R) : InputRange!(Token)
case '*':
case '+':
current = lexComment(range, index, lineNumber);
if (!(iterStyle & IterationStyle.IncludeComments))
{
if (range.empty)
{
_empty = true;
return;
}
popFront();
}
break outer;
case '=':
current.type = TokenType.DivEquals;
@ -388,15 +403,6 @@ class TokenRange(R) : InputRange!(Token)
{
current.type = TokenType.SpecialTokenSequence;
current.value = special;
if (!(iterStyle & IterationStyle.IncludeSpecialTokens))
{
if (range.empty)
{
_empty = true;
return;
}
popFront();
}
}
else
{
@ -421,7 +427,6 @@ class TokenRange(R) : InputRange!(Token)
}
}
private:
Token current;
uint lineNumber;
uint index;
@ -1520,6 +1525,7 @@ body
unittest
{
import std.stdio;
uint i;
uint l;
auto a = "q{import std.stdio;} abcd";
@ -2510,5 +2516,3 @@ string generateCaseTrie(string[] args ...)
}
return printCaseStatements(t, "");
}
void main() {}