This commit is contained in:
Hackerpilot 2017-10-25 13:26:35 -07:00
parent e35d41d75e
commit 00fda4f5eb
4 changed files with 43 additions and 2 deletions

View File

@ -595,7 +595,8 @@ private:
} }
else if (index < tokens.length && (currentIs(tok!"@") else if (index < tokens.length && (currentIs(tok!"@")
|| isBasicType(tokens[index].type) || isBasicType(tokens[index].type)
|| currentIs(tok!"identifier") || currentIs(tok!"if"))) || currentIs(tok!"identifier") || currentIs(tok!"if"))
&& !currentIsIndentedTemplateConstraint())
write(" "); write(" ");
} }
@ -1021,7 +1022,8 @@ private:
else else
{ {
writeToken(); writeToken();
write(" "); if (!currentIsIndentedTemplateConstraint())
write(" ");
} }
} }
else else
@ -1030,6 +1032,14 @@ private:
} }
} }
bool currentIsIndentedTemplateConstraint()
{
return index < tokens.length
&& astInformation.constraintLocations.canFindIndex(current.index)
&& (config.dfmt_template_constraint_style == TemplateConstraintStyle.always_newline
|| currentLineLength >= config.dfmt_soft_max_line_length);
}
void formatOperator() void formatOperator()
{ {
import std.algorithm : canFind; import std.algorithm : canFind;

View File

@ -0,0 +1,11 @@
T[] arrayOp(T, Args...)(T res, Filter!(isType, Args) args) @trusted @nogc pure @things
if (Args[$ - 1] != "=")
{
}
T[] arrayOp(T, Args...)(T res, Filter!(isType, Args) args) @trusted @nogc pure nothrow
if (Args[$ - 1] != "=")
{
}

11
tests/issue0248.d Normal file
View File

@ -0,0 +1,11 @@
T[] arrayOp(T, Args...)(T res, Filter!(isType, Args) args) @trusted @nogc pure @things
if (Args[$ - 1] != "=")
{
}
T[] arrayOp(T, Args...)(T res, Filter!(isType, Args) args) @trusted @nogc pure nothrow
if (Args[$ - 1] != "=")
{
}

View File

@ -0,0 +1,9 @@
T[] arrayOp(T, Args...)(T res, Filter!(isType, Args) args) @trusted @nogc pure @things
if (Args[$ - 1] != "=") {
}
T[] arrayOp(T, Args...)(T res, Filter!(isType, Args) args) @trusted @nogc pure nothrow
if (Args[$ - 1] != "=") {
}