This commit is contained in:
Hackerpilot 2015-04-28 22:21:27 -07:00
parent c90356428f
commit f34a6b6d07
6 changed files with 14 additions and 10 deletions

View File

@ -308,8 +308,8 @@ private:
}
else if (currentIs(tok!","))
{
// compute length until next , or ;
int lengthOfNextChunk = INVALID_TOKEN_LENGTH;
// compute length until next ',' or ';'
int lengthOfNextChunk;
for (size_t i = index + 1; i < tokens.length; i++)
{
if (tokens[i].type == tok!"," || tokens[i].type == tok!";")

View File

@ -1,4 +1,4 @@
import ddmd.aggregate, ddmd.backend, ddmd.dclass, ddmd.declaration, ddmd.dmodule,
ddmd.dsymbol, ddmd.dtemplate, ddmd.expression, ddmd.func, ddmd.globals,
ddmd.identifier, ddmd.init, ddmd.mtype, ddmd.root.array, ddmd.root.file,
ddmd.root.rootobject, ddmd.statement;
import ddmd.aggregate, ddmd.backend, ddmd.dclass, ddmd.declaration,
ddmd.dmodule, ddmd.dsymbol, ddmd.dtemplate, ddmd.expression, ddmd.func,
ddmd.globals, ddmd.identifier, ddmd.init, ddmd.mtype, ddmd.root.array,
ddmd.root.file, ddmd.root.rootobject, ddmd.statement;

View File

@ -0,0 +1 @@
import ae.utils.meta : singleton, I;

2
tests/issue0147.d Normal file
View File

@ -0,0 +1,2 @@
import ae.utils.meta : singleton, I;

View File

@ -1,4 +1,4 @@
import ddmd.aggregate, ddmd.backend, ddmd.dclass, ddmd.declaration, ddmd.dmodule,
ddmd.dsymbol, ddmd.dtemplate, ddmd.expression, ddmd.func, ddmd.globals,
ddmd.identifier, ddmd.init, ddmd.mtype, ddmd.root.array, ddmd.root.file,
ddmd.root.rootobject, ddmd.statement;
import ddmd.aggregate, ddmd.backend, ddmd.dclass, ddmd.declaration,
ddmd.dmodule, ddmd.dsymbol, ddmd.dtemplate, ddmd.expression, ddmd.func,
ddmd.globals, ddmd.identifier, ddmd.init, ddmd.mtype, ddmd.root.array,
ddmd.root.file, ddmd.root.rootobject, ddmd.statement;

View File

@ -0,0 +1 @@
import ae.utils.meta : singleton, I;