diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 2fa02a1..eae3ac7 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -732,7 +732,7 @@ private: writeToken(); indents.popWrapIndents(); linebreakHints = []; - while (indents.topIs(tok!"enum")) + while (indents.topIsOneOf(tok!"enum", tok!"try", tok!"catch", tok!"finally")) indents.pop(); if (indents.topAre(tok!"static", tok!"else")) { @@ -1547,8 +1547,6 @@ private: } else if (currentIs(tok!"catch") || currentIs(tok!"finally")) { - while (indents.topIsOneOf(tok!"catch", tok!"try")) - indents.pop(); indentLevel = indents.indentLevel; } else diff --git a/tests/allman/issue0372.d.ref b/tests/allman/issue0372.d.ref new file mode 100644 index 0000000..e47a83c --- /dev/null +++ b/tests/allman/issue0372.d.ref @@ -0,0 +1,22 @@ +void main(string[] args) +{ + // Test with catch + if (args.length > 1) + try + doSomeStuff(); + catch (Exception error) + ohNoSomeErrorHappened(); + else + thatsNotHowYouUseThisProgram(); + + // Test with finally + if (args.length > 2) + try + doOtherStuff(); + catch (Exception error) + ohNoSomeErrorHappened(); + finally + doSomeCleanup(); + else + dontDoOtherStuff(); +} diff --git a/tests/issue0372.d b/tests/issue0372.d new file mode 100644 index 0000000..7842b4f --- /dev/null +++ b/tests/issue0372.d @@ -0,0 +1,22 @@ +void main(string[] args) +{ +// Test with catch +if (args.length > 1) +try +doSomeStuff(); +catch (Exception error) +ohNoSomeErrorHappened(); +else +thatsNotHowYouUseThisProgram(); + +// Test with finally +if (args.length > 2) +try +doOtherStuff(); +catch (Exception error) +ohNoSomeErrorHappened(); +finally +doSomeCleanup(); +else +dontDoOtherStuff(); +} diff --git a/tests/otbs/issue0372.d.ref b/tests/otbs/issue0372.d.ref new file mode 100644 index 0000000..2c97f83 --- /dev/null +++ b/tests/otbs/issue0372.d.ref @@ -0,0 +1,21 @@ +void main(string[] args) { + // Test with catch + if (args.length > 1) + try + doSomeStuff(); + catch (Exception error) + ohNoSomeErrorHappened(); + else + thatsNotHowYouUseThisProgram(); + + // Test with finally + if (args.length > 2) + try + doOtherStuff(); + catch (Exception error) + ohNoSomeErrorHappened(); + finally + doSomeCleanup(); + else + dontDoOtherStuff(); +}