Fix #248
This commit is contained in:
parent
e35d41d75e
commit
00fda4f5eb
|
@ -595,7 +595,8 @@ private:
|
|||
}
|
||||
else if (index < tokens.length && (currentIs(tok!"@")
|
||||
|| isBasicType(tokens[index].type)
|
||||
|| currentIs(tok!"identifier") || currentIs(tok!"if")))
|
||||
|| currentIs(tok!"identifier") || currentIs(tok!"if"))
|
||||
&& !currentIsIndentedTemplateConstraint())
|
||||
write(" ");
|
||||
}
|
||||
|
||||
|
@ -1021,7 +1022,8 @@ private:
|
|||
else
|
||||
{
|
||||
writeToken();
|
||||
write(" ");
|
||||
if (!currentIsIndentedTemplateConstraint())
|
||||
write(" ");
|
||||
}
|
||||
}
|
||||
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()
|
||||
{
|
||||
import std.algorithm : canFind;
|
||||
|
|
|
@ -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] != "=")
|
||||
{
|
||||
|
||||
}
|
|
@ -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] != "=")
|
||||
{
|
||||
|
||||
}
|
|
@ -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] != "=") {
|
||||
|
||||
}
|
Loading…
Reference in New Issue