Wrap the argument list of a template function

Fixes #454.
This commit is contained in:
Eugen Wissner 2020-01-05 18:52:01 +01:00 committed by Jan Jurzitza
parent 0795a477f1
commit 27929e4cc5
4 changed files with 31 additions and 0 deletions

View File

@ -452,6 +452,9 @@ private:
write(" "); write(" ");
else if (canAddNewline || (peekIs(tok!"{") && t == tok!"}")) else if (canAddNewline || (peekIs(tok!"{") && t == tok!"}"))
newline(); newline();
if (peekIs(tok!"(") && (peekBackIs(tok!")") || peekBack2Is(tok!"!")))
pushWrapIndent(tok!"(");
} }
writeToken(); writeToken();
immutable j = justAddedExtraNewline; immutable j = justAddedExtraNewline;

View File

@ -0,0 +1,10 @@
void main()
{
format!"%s" //
("");
format!("%s") //
("");
format!("%s") //
("", argument1, argument2, argument3, argument4, argument5,
argument6, argument7, argument8, argument9, argument10);
}

9
tests/issue0454.d Normal file
View File

@ -0,0 +1,9 @@
void main()
{
format!"%s" //
("");
format!("%s") //
("");
format!("%s") //
("", argument1, argument2, argument3, argument4, argument5, argument6, argument7, argument8, argument9, argument10);
}

View File

@ -0,0 +1,9 @@
void main() {
format!"%s" //
("");
format!("%s") //
("");
format!("%s") //
("", argument1, argument2, argument3, argument4, argument5,
argument6, argument7, argument8, argument9, argument10);
}