Print colon in AA before identifiers
This commit is contained in:
parent
58b2c6ebc6
commit
d100c40dab
|
@ -805,6 +805,11 @@ private:
|
|||
newline();
|
||||
}
|
||||
}
|
||||
else if (indents.topIs(tok!"]")) // Associative array
|
||||
{
|
||||
write(config.dfmt_space_before_aa_colon ? " : " : ": ");
|
||||
++index;
|
||||
}
|
||||
else if (peekBackIs(tok!"identifier")
|
||||
&& [tok!"{", tok!"}", tok!";", tok!":", tok!","]
|
||||
.any!((ptrdiff_t token) => peekBack2Is(cast(IdType)token, true))
|
||||
|
@ -838,12 +843,7 @@ private:
|
|||
}
|
||||
else
|
||||
{
|
||||
const inAA = indents.topIs(tok!"]") && indents.topDetails.breakEveryItem;
|
||||
|
||||
if (inAA && !config.dfmt_space_before_aa_colon)
|
||||
write(": ");
|
||||
else
|
||||
write(" : ");
|
||||
write(" : ");
|
||||
index++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
bool asdf(const string owner, const string mail) @safe
|
||||
{
|
||||
requestHTTP(url, (scope HTTPClientRequest request) {
|
||||
request.writeFormBody([owner: owner, mail: mail]);
|
||||
}, (scope HTTPClientResponse response) {});
|
||||
|
||||
return true;
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
void main()
|
||||
{
|
||||
int a;
|
||||
int[int] hashmap = [a : a, a : a, a : a];
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
void main()
|
||||
{
|
||||
auto aa = ["aaa": 1, "bbb": 2];
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
bool asdf(const string owner, const string mail) @safe
|
||||
{
|
||||
requestHTTP(url, (scope HTTPClientRequest request) {
|
||||
request.writeFormBody([owner: owner, mail:
|
||||
mail]);
|
||||
}, (scope HTTPClientResponse response) {});
|
||||
|
||||
return true;
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
--space_before_aa_colon true
|
|
@ -0,0 +1,5 @@
|
|||
void main()
|
||||
{
|
||||
int a;
|
||||
int[int] hashmap = [a : a, a : a, a : a];
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
void main()
|
||||
{
|
||||
auto aa = ["aaa": 1, "bbb":2];
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
bool asdf(const string owner, const string mail) @safe {
|
||||
requestHTTP(url, (scope HTTPClientRequest request) {
|
||||
request.writeFormBody([owner: owner, mail: mail]);
|
||||
}, (scope HTTPClientResponse response) {});
|
||||
|
||||
return true;
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
void main() {
|
||||
int a;
|
||||
int[int] hashmap = [a : a, a : a, a : a];
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
void main() {
|
||||
auto aa = ["aaa": 1, "bbb": 2];
|
||||
}
|
Loading…
Reference in New Issue