Revert chain indentation in an argument list

This commit is contained in:
Eugen Wissner 2023-01-15 19:47:57 +01:00 committed by Jan Jurzitza
parent 57f57d95de
commit a4fbc6f881
11 changed files with 128 additions and 0 deletions

View File

@ -1625,6 +1625,10 @@ private:
const commaLine = tokens[index].line;
writeToken();
if (indents.topIs(tok!"."))
{
indents.pop;
}
if (!currentIs(tok!")") && !currentIs(tok!"]")
&& !currentIs(tok!"}") && !currentIs(tok!"comment"))
{
@ -1643,6 +1647,10 @@ private:
{
pushWrapIndent();
writeToken();
if (indents.topIs(tok!"."))
{
indents.pop;
}
newline();
}
else

View File

@ -0,0 +1,13 @@
class C
{
void f()
{
if (true)
{
f(map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map
.map.map.map.map.map.map, __FILE__, __FILE__, __FILE__, __FILE__, __FILE__,
__FILE__, __FILE__, __FILE__, __FILE__, __FILE__, __FILE__,
__FILE__, __FILE__, __FILE__, __FILE__, __FILE__, __LINE__);
}
}
}

View File

@ -0,0 +1,15 @@
class C
{
void f()
{
if (true)
{
f(
array.map!(a => a.prop)
.array
.to!string,
__FILE__,
__LINE__);
}
}
}

View File

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

View File

@ -0,0 +1,28 @@
class C
{
void f()
{
if (true)
{
f(
map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__FILE__,
__LINE__);
}
}
}

View File

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

View File

@ -0,0 +1,15 @@
class C
{
void f()
{
if (true)
{
f(
array.map!(a => a.prop)
.array
.to!string,
__FILE__,
__LINE__);
}
}
}

View File

@ -0,0 +1,11 @@
class C {
void f()
{
if (true) {
f(map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map
.map.map.map.map.map.map, __FILE__, __FILE__, __FILE__, __FILE__, __FILE__,
__FILE__, __FILE__, __FILE__, __FILE__, __FILE__, __FILE__,
__FILE__, __FILE__, __FILE__, __FILE__, __FILE__, __LINE__);
}
}
}

View File

@ -0,0 +1,13 @@
class C {
void f()
{
if (true) {
f(
array.map!(a => a.prop)
.array
.to!string,
__FILE__,
__LINE__);
}
}
}

View File

@ -0,0 +1,10 @@
class C {
void f() {
if (true) {
f(map.map.map.map.map.map.map.map.map.map.map.map.map.map.map.map
.map.map.map.map.map.map, __FILE__, __FILE__, __FILE__, __FILE__, __FILE__,
__FILE__, __FILE__, __FILE__, __FILE__, __FILE__, __FILE__,
__FILE__, __FILE__, __FILE__, __FILE__, __FILE__, __LINE__);
}
}
}

View File

@ -0,0 +1,12 @@
class C {
void f() {
if (true) {
f(
array.map!(a => a.prop)
.array
.to!string,
__FILE__,
__LINE__);
}
}
}