Fix #109
This commit is contained in:
parent
83072689d1
commit
1bfaa7ad7a
13
src/dfmt.d
13
src/dfmt.d
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
sourceLoop: for (; childCodes.length > 0 && sourceListStore.iterIsValid(sourceIter);
|
||||||
|
sourceListStore.iterNext(sourceIter))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
sourceLoop: for (; childCodes.length > 0 && sourceListStore.iterIsValid(sourceIter); sourceListStore.iterNext(
|
||||||
|
sourceIter))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
unittest {
|
||||||
|
sourceLoop: for (; childCodes.length > 0 && sourceListStore.iterIsValid(sourceIter);
|
||||||
|
sourceListStore.iterNext(sourceIter)) {
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue