Revert chain indentation in an argument list
This commit is contained in:
parent
57f57d95de
commit
a4fbc6f881
|
@ -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
|
||||
|
|
|
@ -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__);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
class C
|
||||
{
|
||||
void f()
|
||||
{
|
||||
if (true)
|
||||
{
|
||||
f(
|
||||
array.map!(a => a.prop)
|
||||
.array
|
||||
.to!string,
|
||||
__FILE__,
|
||||
__LINE__);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
--single_indent=true
|
|
@ -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__);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,2 @@
|
|||
--single_indent=true
|
||||
--keep_line_breaks=true
|
|
@ -0,0 +1,15 @@
|
|||
class C
|
||||
{
|
||||
void f()
|
||||
{
|
||||
if (true)
|
||||
{
|
||||
f(
|
||||
array.map!(a => a.prop)
|
||||
.array
|
||||
.to!string,
|
||||
__FILE__,
|
||||
__LINE__);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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__);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
class C {
|
||||
void f()
|
||||
{
|
||||
if (true) {
|
||||
f(
|
||||
array.map!(a => a.prop)
|
||||
.array
|
||||
.to!string,
|
||||
__FILE__,
|
||||
__LINE__);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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__);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
class C {
|
||||
void f() {
|
||||
if (true) {
|
||||
f(
|
||||
array.map!(a => a.prop)
|
||||
.array
|
||||
.to!string,
|
||||
__FILE__,
|
||||
__LINE__);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue