This commit is contained in:
parent
08fe5d6855
commit
35e55bc9b2
|
@ -63,6 +63,7 @@ struct ASTInformation
|
|||
(structInfoSortedByEndLocation);
|
||||
sort(ufcsHintLocations);
|
||||
ufcsHintLocations = ufcsHintLocations.uniq().array();
|
||||
sort(ternaryColonLocations);
|
||||
}
|
||||
|
||||
/// Locations of end braces for struct bodies
|
||||
|
@ -135,6 +136,9 @@ struct ASTInformation
|
|||
|
||||
/// Opening & closing braces of struct initializers
|
||||
StructInitializerInfo[] structInfoSortedByEndLocation;
|
||||
|
||||
/// Locations ternary expression colons.
|
||||
size_t[] ternaryColonLocations;
|
||||
}
|
||||
|
||||
/// Collects information from the AST that is useful for the formatter
|
||||
|
@ -438,6 +442,12 @@ final class FormatVisitor : ASTVisitor
|
|||
outStatement.accept(this);
|
||||
}
|
||||
|
||||
override void visit(const TernaryExpression ternaryExpression)
|
||||
{
|
||||
astInformation.ternaryColonLocations ~= ternaryExpression.colon.index;
|
||||
ternaryExpression.accept(this);
|
||||
}
|
||||
|
||||
private:
|
||||
ASTInformation* astInformation;
|
||||
}
|
||||
|
|
|
@ -841,6 +841,7 @@ private:
|
|||
current.line);
|
||||
immutable bool isStructInitializer = astInformation.structInfoSortedByEndLocation
|
||||
.canFind!(st => st.startLocation < current.index && current.index < st.endLocation);
|
||||
immutable bool isTernary = astInformation.ternaryColonLocations.canFindIndex(current.index);
|
||||
|
||||
if (isCase || isAttribute)
|
||||
{
|
||||
|
@ -856,7 +857,7 @@ private:
|
|||
newline();
|
||||
}
|
||||
}
|
||||
else if (indents.topIs(tok!"]")) // Associative array
|
||||
else if (indents.topIs(tok!"]") && !isTernary) // Associative array
|
||||
{
|
||||
write(config.dfmt_space_before_aa_colon ? " : " : ": ");
|
||||
++index;
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
void f()
|
||||
{
|
||||
auto t = true ? 1 : 0;
|
||||
auto a = [true ? 1 : 0];
|
||||
auto aa1 = [0: true ? 1 : 0];
|
||||
auto aa2 = [0: true ? (false ? 1 : 2) : 3];
|
||||
auto aa3 = [0: true ? false ? 1 : 2 : 3];
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
void f()
|
||||
{
|
||||
auto t = true ? 1 : 0;
|
||||
auto a = [true ? 1: 0];
|
||||
auto aa1 = [0: true ? 1: 0];
|
||||
auto aa2 = [0: true ? (false ? 1: 2): 3];
|
||||
auto aa3 = [0: true ? false ? 1: 2: 3];
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
void f()
|
||||
{
|
||||
auto t = true ? 1 : 0;
|
||||
auto a = [true ? 1 : 0];
|
||||
auto aa1 = [0: true ? 1 : 0];
|
||||
auto aa2 = [0: true ? (false ? 1 : 2) : 3];
|
||||
auto aa3 = [0: true ? false ? 1 : 2 : 3];
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
void f() {
|
||||
auto t = true ? 1 : 0;
|
||||
auto a = [true ? 1 : 0];
|
||||
auto aa1 = [0: true ? 1 : 0];
|
||||
auto aa2 = [0: true ? (false ? 1 : 2) : 3];
|
||||
auto aa3 = [0: true ? false ? 1 : 2 : 3];
|
||||
}
|
Loading…
Reference in New Issue