This commit is contained in:
Hackerpilot 2015-03-16 16:28:47 -07:00
parent 83072689d1
commit 1bfaa7ad7a
4 changed files with 31 additions and 7 deletions

View File

@ -502,17 +502,21 @@ private:
{ {
if (parenDepth > 0) if (parenDepth > 0)
{ {
if (linebreakHints.canFindIndex(index)) if (currentLineLength > config.columnSoftLimit)
{ {
writeToken(); writeToken();
pushWrapIndent(tok!";");
newline(); newline();
} }
else if (!(peekIs(tok!";") || peekIs(tok!")") || peekIs(tok!"}"))) else
{
if (!(peekIs(tok!";") || peekIs(tok!")") || peekIs(tok!"}")))
write("; "); write("; ");
else else
write(";"); write(";");
index++; index++;
} }
}
else else
{ {
writeToken(); writeToken();
@ -1203,8 +1207,9 @@ private:
} }
else else
{ {
while ((peekBackIs(tok!"}", true) || peekBackIs(tok!";", true)) while (indents.length && (peekBackIs(tok!"}", true)
&& indents.length && isTempIndent(indents.top())) || (peekBackIs(tok!";", true) && indents.top != tok!";"))
&& isTempIndent(indents.top()))
{ {
indents.pop(); indents.pop();
} }

View File

@ -0,0 +1,7 @@
unittest
{
sourceLoop: for (; childCodes.length > 0 && sourceListStore.iterIsValid(sourceIter);
sourceListStore.iterNext(sourceIter))
{
}
}

7
tests/issue0109.d Normal file
View File

@ -0,0 +1,7 @@
unittest
{
sourceLoop: for (; childCodes.length > 0 && sourceListStore.iterIsValid(sourceIter); sourceListStore.iterNext(
sourceIter))
{
}
}

View File

@ -0,0 +1,5 @@
unittest {
sourceLoop: for (; childCodes.length > 0 && sourceListStore.iterIsValid(sourceIter);
sourceListStore.iterNext(sourceIter)) {
}
}