Print colon in AA before identifiers

This commit is contained in:
Eugen Wissner 2020-08-23 14:51:17 +02:00 committed by The Dlang Bot
parent 58b2c6ebc6
commit d100c40dab
11 changed files with 56 additions and 6 deletions

View File

@ -805,6 +805,11 @@ private:
newline(); newline();
} }
} }
else if (indents.topIs(tok!"]")) // Associative array
{
write(config.dfmt_space_before_aa_colon ? " : " : ": ");
++index;
}
else if (peekBackIs(tok!"identifier") else if (peekBackIs(tok!"identifier")
&& [tok!"{", tok!"}", tok!";", tok!":", tok!","] && [tok!"{", tok!"}", tok!";", tok!":", tok!","]
.any!((ptrdiff_t token) => peekBack2Is(cast(IdType)token, true)) .any!((ptrdiff_t token) => peekBack2Is(cast(IdType)token, true))
@ -838,12 +843,7 @@ private:
} }
else else
{ {
const inAA = indents.topIs(tok!"]") && indents.topDetails.breakEveryItem; write(" : ");
if (inAA && !config.dfmt_space_before_aa_colon)
write(": ");
else
write(" : ");
index++; index++;
} }
} }

View File

@ -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;
}

View File

@ -0,0 +1,5 @@
void main()
{
int a;
int[int] hashmap = [a : a, a : a, a : a];
}

View File

@ -0,0 +1,4 @@
void main()
{
auto aa = ["aaa": 1, "bbb": 2];
}

9
tests/issue0465.d Normal file
View File

@ -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;
}

1
tests/issue0485.args Normal file
View File

@ -0,0 +1 @@
--space_before_aa_colon true

5
tests/issue0485.d Normal file
View File

@ -0,0 +1,5 @@
void main()
{
int a;
int[int] hashmap = [a : a, a : a, a : a];
}

4
tests/issue0501.d Normal file
View File

@ -0,0 +1,4 @@
void main()
{
auto aa = ["aaa": 1, "bbb":2];
}

View File

@ -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;
}

View File

@ -0,0 +1,4 @@
void main() {
int a;
int[int] hashmap = [a : a, a : a, a : a];
}

View File

@ -0,0 +1,3 @@
void main() {
auto aa = ["aaa": 1, "bbb": 2];
}