Fix #147
This commit is contained in:
parent
c90356428f
commit
f34a6b6d07
|
@ -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!";")
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
import ae.utils.meta : singleton, I;
|
|
@ -0,0 +1,2 @@
|
|||
|
||||
import ae.utils.meta : singleton, I;
|
|
@ -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;
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
import ae.utils.meta : singleton, I;
|
Loading…
Reference in New Issue