Merge branch 'master' of https://github.com/dlang-community/dfmt into master

This commit is contained in:
Hackerpilot 2020-09-30 22:56:36 -07:00
commit 9dc690e23b
19 changed files with 202 additions and 33 deletions

View File

@ -713,13 +713,13 @@ private:
{
writeToken();
if (spaceAfterParens || parenDepth > 0)
write(" ");
writeSpace();
}
else if ((peekIsKeyword() || peekIs(tok!"@")) && spaceAfterParens
&& !peekIs(tok!"in") && !peekIs(tok!"is") && !peekIs(tok!"if"))
{
writeToken();
write(" ");
writeSpace();
}
else
writeToken();
@ -769,14 +769,7 @@ private:
|| currentIs(tok!"identifier"))
&& !currentIsIndentedTemplateConstraint())
{
if (onNextLine)
{
newline();
}
else
{
write(" ");
}
writeSpace();
}
}
@ -805,6 +798,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 +836,7 @@ private:
}
else
{
const inAA = indents.topIs(tok!"]") && indents.topDetails.breakEveryItem;
if (inAA && !config.dfmt_space_before_aa_colon)
write(": ");
else
write(" : ");
write(" : ");
index++;
}
}
@ -1289,14 +1282,7 @@ private:
default:
if (peekBackIs(tok!"identifier"))
{
if (onNextLine)
{
newline();
}
else
{
write(" ");
}
writeSpace();
}
if (index + 1 < tokens.length)
{
@ -1310,14 +1296,7 @@ private:
writeToken();
if (!currentIsIndentedTemplateConstraint())
{
if (onNextLine)
{
newline();
}
else
{
write(" ");
}
writeSpace();
}
}
}
@ -1427,7 +1406,7 @@ private:
{
pushWrapIndent();
newline();
if (ufcsWrap)
if (ufcsWrap || onNextLine)
regenLineBreakHints(index);
}
writeToken();
@ -1943,6 +1922,18 @@ private:
indents.push(type, detail);
}
void writeSpace()
{
if (onNextLine)
{
newline();
}
else
{
write(" ");
}
}
const pure @safe @nogc:
size_t expressionEndIndex(size_t i, bool matchComma = false) nothrow

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,5 @@
void main()
{
auto someAutoVariableName = this.firstLink.secondLink
.filter!(shouldBeProbablySomeIdentifierOrNot);
}

View File

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

View File

@ -0,0 +1,40 @@
deprecated("foo")
void test()
{
}
package(foo)
void bar()
{
}
@uda()
void baz()
{
}
deprecated
deprecated_()
{
}
@uda
void uda_()
{
}
@property
void property()
{
}
deprecated("Reason") @uda
void propertyuda()
{
}
deprecated("Reason")
@uda
void udaproperty()
{
}

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

1
tests/issue0486.args Normal file
View File

@ -0,0 +1 @@
--keep_line_breaks=true

5
tests/issue0486.d Normal file
View File

@ -0,0 +1,5 @@
void main()
{
auto someAutoVariableName = this.firstLink.secondLink
.filter!(shouldBeProbablySomeIdentifierOrNot);
}

4
tests/issue0501.d Normal file
View File

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

1
tests/issue0504.args Normal file
View File

@ -0,0 +1 @@
--keep_line_breaks=true

40
tests/issue0504.d Normal file
View File

@ -0,0 +1,40 @@
deprecated("foo")
void test()
{
}
package(foo)
void bar()
{
}
@uda()
void baz()
{
}
deprecated
deprecated_()
{
}
@uda
void uda_()
{
}
@property
void property()
{
}
deprecated("Reason") @uda
void propertyuda()
{
}
deprecated("Reason")
@uda
void udaproperty()
{
}

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,4 @@
void main() {
auto someAutoVariableName = this.firstLink.secondLink
.filter!(shouldBeProbablySomeIdentifierOrNot);
}

View File

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

View File

@ -0,0 +1,32 @@
deprecated("foo")
void test() {
}
package(foo)
void bar() {
}
@uda()
void baz() {
}
deprecated
deprecated_() {
}
@uda
void uda_() {
}
@property
void property() {
}
deprecated("Reason") @uda
void propertyuda() {
}
deprecated("Reason")
@uda
void udaproperty() {
}