diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 2102fc3..9e472d1 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -174,6 +174,9 @@ private: /// True if the next "this" should have a space behind it bool thisSpace; + /// True if the next "else" should be formatted as a single line + bool inlineElse; + void formatStep() { import std.range : assumeSorted; @@ -281,6 +284,8 @@ private: } else if (isKeyword(current.type)) { + if (currentIs(tok!"debug")) + inlineElse = true; formatKeyword(); } else if (current.text == "body" && peekBackIsFunctionDeclarationEnding()) @@ -710,6 +715,9 @@ private: void formatSemicolon() { + if (inlineElse && !peekIs(tok!"else")) + inlineElse = false; + if ((parenDepth > 0 && sBraceDepth == 0) || (sBraceDepth > 0 && niBraceDepth > 0)) { if (currentLineLength > config.dfmt_soft_max_line_length) @@ -1001,11 +1009,12 @@ private: void formatElse() { writeToken(); - if (currentIs(tok!"if") || currentIs(tok!"version") + if (inlineElse || currentIs(tok!"if") || currentIs(tok!"version") || (currentIs(tok!"static") && peekIs(tok!"if"))) { if (indents.topIs(tok!"if") || indents.topIs(tok!"version")) indents.pop(); + inlineElse = false; write(" "); } else if (currentIs(tok!":")) diff --git a/tests/allman/issue0267.d.ref b/tests/allman/issue0267.d.ref new file mode 100644 index 0000000..24784cf --- /dev/null +++ b/tests/allman/issue0267.d.ref @@ -0,0 +1,19 @@ +void main() +{ + debug foo(); + else bar(); + + debug (0) + foo(); + else + bar(); + + // inlineElse reset check + + debug foo(); + + if (true) + foo(); + else + bar(); +} diff --git a/tests/issue0267.d b/tests/issue0267.d new file mode 100644 index 0000000..d799e65 --- /dev/null +++ b/tests/issue0267.d @@ -0,0 +1,12 @@ +void main() +{ +debug foo(); else bar(); + +debug (0) foo(); else bar(); + +// inlineElse reset check + +debug foo(); + +if (true) foo(); else bar(); +} diff --git a/tests/otbs/issue0267.d.ref b/tests/otbs/issue0267.d.ref new file mode 100644 index 0000000..69cc599 --- /dev/null +++ b/tests/otbs/issue0267.d.ref @@ -0,0 +1,18 @@ +void main() { + debug foo(); + else bar(); + + debug (0) + foo(); + else + bar(); + + // inlineElse reset check + + debug foo(); + + if (true) + foo(); + else + bar(); +}