This commit is contained in:
Daniel Zuncke 2024-09-26 19:27:26 +00:00 committed by GitHub
commit be29b1c4b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 80 additions and 0 deletions

View File

@ -1804,6 +1804,12 @@ private:
assert(l2 != -1, "Recent '{' is not found despite being in struct initializer");
indentLevel = l2 + 1;
}
else if (canFind(astInformation.namedArgumentColonLocations, tokens[nextNonComment(1)].index))
{
immutable l2 = indents.indentToMostRecent(tok!"(");
assert(l2 != -1, "Recent '(' is not found despite being in named function argument");
indentLevel = l2 + 1;
}
else if ((config.dfmt_compact_labeled_statements == OptionalBoolean.f
|| !isBlockHeader(2) || peek2Is(tok!"if")) && !indents.topIs(tok!"]"))
{
@ -2316,6 +2322,25 @@ const pure @safe @nogc:
return previousTokenEndLineNo < tokens[index].line;
}
/++
+ Get the index of the next token that isn't a comment starting from
+ current index + n.
+ If n is negative, searches backwards.
+ If n = 0, returns index.
+ Params:
+ n = Offset to index where search begins. Negative values search backwards.
+ Returns:
+ Index of next token that isn't a comment or `size_t.max` if no such
+ token exists,
+/
size_t nextNonComment(int n = 1)
{
size_t i = index + n;
while (n != 0 && i < tokens.length && tokens[i].type == tok!"comment")
i = n > 0 ? i + 1 : i - 1;
return i < tokens.length ? i : size_t.max;
}
/// Bugs: not unicode correct
size_t tokenEndLine(const Token t)
{

View File

@ -26,3 +26,10 @@ void main()
temp(v1: () { S s = S(i: 5); return s.i; }, v2: 1);
}
void g()
{
tmp(namedArg1: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc",
namedArg2: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc",
namedArg3: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc");
}

View File

@ -0,0 +1,7 @@
void test()
{
return Struct(
foo: field.foo,
bar: field.bar,
baz: field.baz);
}

View File

@ -29,3 +29,10 @@ void main()
temp(v1: () { S s = S(i: 5); return s.i; }, v2: 1);
}
void g()
{
tmp(namedArg1: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc",
namedArg2: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc",
namedArg3: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc");
}

View File

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

View File

@ -0,0 +1,7 @@
void test()
{
return Struct(
foo: field.foo,
bar: field.bar,
baz: field.baz);
}

View File

@ -25,3 +25,10 @@ void main()
temp(v1: () { S s = S(i: 5); return s.i; }, v2: 1);
}
void g()
{
tmp(namedArg1: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc",
namedArg2: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc",
namedArg3: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc");
}

View File

@ -0,0 +1,7 @@
void test()
{
return Struct(
foo: field.foo,
bar: field.bar,
baz: field.baz);
}

View File

@ -22,3 +22,9 @@ void main() {
temp(v1: () { S s = S(i: 5); return s.i; }, v2: 1);
}
void g() {
tmp(namedArg1: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc",
namedArg2: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc",
namedArg3: "abc abc abc abc abc abc abc abc abc abc abc abc abc abc abc");
}

View File

@ -0,0 +1,6 @@
void test() {
return Struct(
foo: field.foo,
bar: field.bar,
baz: field.baz);
}