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:
parent
6ad2fbb6fc
commit
f3fe504ed5
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue