This commit is contained in:
Hackerpilot 2016-01-21 22:11:32 -08:00
parent db2ad1354b
commit 08c2d0c5e8
4 changed files with 18 additions and 1 deletions

View File

@ -364,7 +364,9 @@ private:
immutable canAddNewline = currTokenLine - prevTokenEndLine < 1;
if (peekBackIsOperator() && !isSeparationToken(t))
pushWrapIndent(t);
if (peekBackIs(tok!")") && !canAddNewline && prevTokenEndLine < currTokenLine)
if (peekBackIsOperator() && !peekBackIsOneOf(false, tok!"comment",
tok!"{", tok!"}", tok!":", tok!";", tok!",", tok!"[", tok!"(")
&& !canAddNewline && prevTokenEndLine < currTokenLine)
write(" ");
else if (prevTokenEndLine == currTokenLine || (t == tok!")" && peekIs(tok!"{")))
write(" ");

View File

@ -0,0 +1,5 @@
unittest
{
return (complicated % expression) / //-------------------
(other * complicated + expression);
}

6
tests/issue0222.d Normal file
View File

@ -0,0 +1,6 @@
unittest
{
return (complicated % expression) /
//-------------------
(other * complicated + expression);
}

View File

@ -0,0 +1,4 @@
unittest {
return (complicated % expression) / //-------------------
(other * complicated + expression);
}