Allow comments in selective imports.

tokenLength() does not consider comments as valid tokens, so get their length explicitly.

Fixes issue 384, allowing comments inbetween the symbols of selective imports.
This commit is contained in:
Bastiaan Veelo 2018-10-16 21:02:54 +02:00
parent 6ad2fbb6fc
commit f3fe504ed5
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ private:
{
if (tokens[i].type == tok!"," || tokens[i].type == tok!";")
break;
const len = tokenLength(tokens[i]);
immutable len = tokens[i].type == tok!"comment" ? tokens[i].text.length : tokenLength(tokens[i]);
assert(len >= 0);
lengthOfNextChunk += len;
}