diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index ab258c6..67d6cf0 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -203,7 +203,7 @@ private: /// Tracks paren depth on a single line. This information can be used to /// indent array literals inside parens, since arrays are indented only once - /// and paren indentation is ignored.line breaks and "[" reset the counter. + /// and paren indentation is ignored. Line breaks and "[" reset the counter. int parenDepthOnLine; string eolStringFromInput() const @@ -726,7 +726,6 @@ private: { indents.pop(); } - indents.popTempIndents(); } parenDepthOnLine = 0; } @@ -1703,8 +1702,6 @@ private: import std.algorithm : max, canFind; import dfmt.editorconfig : OptionalBoolean; - parenDepthOnLine = 0; - if (currentIs(tok!"comment") && index > 0 && current.line == tokenEndLine(tokens[index - 1])) return; @@ -1822,7 +1819,19 @@ private: if (indents.topIs(tok!"]")) { indents.pop(); - indentLevel = indents.indentLevel; + } + // Find the initial indentation of constructs like "if" and + // "foreach" without removing them from the stack, since they + // still can be used later to indent "else". + auto savedIndents = IndentStack(config); + while (indents.length >= 0 && indents.topIsTemp) { + savedIndents.push(indents.top, indents.topDetails); + indents.pop; + } + indentLevel = indents.indentLevel; + while (savedIndents.length > 0) { + indents.push(savedIndents.top, savedIndents.topDetails); + savedIndents.pop; } } else if (astInformation.attributeDeclarationLines.canFindIndex(current.line)) @@ -1853,6 +1862,7 @@ private: } indent(); } + parenDepthOnLine = 0; } void write(string str) diff --git a/src/dfmt/indentation.d b/src/dfmt/indentation.d index 7b5da72..cdd78e4 100644 --- a/src/dfmt/indentation.d +++ b/src/dfmt/indentation.d @@ -278,6 +278,12 @@ private: immutable currentIsNonWrapTemp = !details[i].wrap && details[i].temp && arr[i] != tok!")" && arr[i] != tok!"!"; + + if (currentIsNonWrapTemp && arr[i + 1] == tok!"]") + { + parenCount = pc; + continue; + } if (arr[i] == tok!"static" && arr[i + 1].among!(tok!"if", tok!"else", tok!"foreach", tok!"foreach_reverse") && (i + 2 >= index || arr[i + 2] != tok!"{")) diff --git a/tests/allman/issue0494_else.d.ref b/tests/allman/issue0494_else.d.ref new file mode 100644 index 0000000..e85982b --- /dev/null +++ b/tests/allman/issue0494_else.d.ref @@ -0,0 +1,74 @@ +private void selectMember(Args...)(Args args) +{ + static if (true) + { + static if (args[0]) + { + } + else + { + } + } + if (true) + { + if (args[0]) + { + } + else + { + } + } +} + +private void selectMember(Args...)(Args args) +{ + static if (true) + { + static if ([ + 0, + 1, + 2, + 3, + 4, + ]) + { + } + else + { + } + } + if (true) + { + if (args[ + 0, + 1, + 2, + 3, + 4, + ]) + { + } + else + { + } + } +} + +void f() +{ + foreach (x; y) + if (foo) + { + } + else + { + } + + if (a) + if (b) + { + } + else + { + } +} diff --git a/tests/issue0494_else.args b/tests/issue0494_else.args new file mode 100644 index 0000000..7e7e52d --- /dev/null +++ b/tests/issue0494_else.args @@ -0,0 +1 @@ +--keep_line_breaks=true diff --git a/tests/issue0494_else.d b/tests/issue0494_else.d new file mode 100644 index 0000000..e85982b --- /dev/null +++ b/tests/issue0494_else.d @@ -0,0 +1,74 @@ +private void selectMember(Args...)(Args args) +{ + static if (true) + { + static if (args[0]) + { + } + else + { + } + } + if (true) + { + if (args[0]) + { + } + else + { + } + } +} + +private void selectMember(Args...)(Args args) +{ + static if (true) + { + static if ([ + 0, + 1, + 2, + 3, + 4, + ]) + { + } + else + { + } + } + if (true) + { + if (args[ + 0, + 1, + 2, + 3, + 4, + ]) + { + } + else + { + } + } +} + +void f() +{ + foreach (x; y) + if (foo) + { + } + else + { + } + + if (a) + if (b) + { + } + else + { + } +} diff --git a/tests/knr/issue0494_else.d.ref b/tests/knr/issue0494_else.d.ref new file mode 100644 index 0000000..4ad61b9 --- /dev/null +++ b/tests/knr/issue0494_else.d.ref @@ -0,0 +1,52 @@ +private void selectMember(Args...)(Args args) +{ + static if (true) { + static if (args[0]) { + } else { + } + } + if (true) { + if (args[0]) { + } else { + } + } +} + +private void selectMember(Args...)(Args args) +{ + static if (true) { + static if ([ + 0, + 1, + 2, + 3, + 4, + ]) { + } else { + } + } + if (true) { + if (args[ + 0, + 1, + 2, + 3, + 4, + ]) { + } else { + } + } +} + +void f() +{ + foreach (x; y) + if (foo) { + } else { + } + + if (a) + if (b) { + } else { + } +} diff --git a/tests/otbs/issue0494_else.d.ref b/tests/otbs/issue0494_else.d.ref new file mode 100644 index 0000000..a36a00a --- /dev/null +++ b/tests/otbs/issue0494_else.d.ref @@ -0,0 +1,49 @@ +private void selectMember(Args...)(Args args) { + static if (true) { + static if (args[0]) { + } else { + } + } + if (true) { + if (args[0]) { + } else { + } + } +} + +private void selectMember(Args...)(Args args) { + static if (true) { + static if ([ + 0, + 1, + 2, + 3, + 4, + ]) { + } else { + } + } + if (true) { + if (args[ + 0, + 1, + 2, + 3, + 4, + ]) { + } else { + } + } +} + +void f() { + foreach (x; y) + if (foo) { + } else { + } + + if (a) + if (b) { + } else { + } +}