Issue 586: Fix indentation for named arguments

Indentation is wrong if named arguments come after newline.
This commit is contained in:
Daniel Zuncke 2024-02-03 22:50:51 +01:00
parent 2ea6c43a66
commit bf56024154
No known key found for this signature in database
GPG Key ID: A2A8C43610B6B485
1 changed files with 24 additions and 0 deletions

View File

@ -1804,6 +1804,12 @@ private:
assert(l2 != -1, "Recent '{' is not found despite being in struct initializer"); assert(l2 != -1, "Recent '{' is not found despite being in struct initializer");
indentLevel = l2 + 1; 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 else if ((config.dfmt_compact_labeled_statements == OptionalBoolean.f
|| !isBlockHeader(2) || peek2Is(tok!"if")) && !indents.topIs(tok!"]")) || !isBlockHeader(2) || peek2Is(tok!"if")) && !indents.topIs(tok!"]"))
{ {
@ -2316,6 +2322,24 @@ const pure @safe @nogc:
return previousTokenEndLineNo < tokens[index].line; 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 an index that is out of bounds.
+/
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;
}
/// Bugs: not unicode correct /// Bugs: not unicode correct
size_t tokenEndLine(const Token t) size_t tokenEndLine(const Token t)
{ {