From d6861cc5a224a5cbaf0a558a0b5a11c9c29c0dd8 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 28 Apr 2016 15:23:00 -0700 Subject: [PATCH] Fix #241 --- src/dfmt/formatter.d | 5 +++++ tests/allman/issue0241.d.ref | 4 ++++ tests/issue0241.d | 4 ++++ tests/otbs/issue0241.d.ref | 3 +++ 4 files changed, 16 insertions(+) create mode 100644 tests/allman/issue0241.d.ref create mode 100644 tests/issue0241.d create mode 100644 tests/otbs/issue0241.d.ref diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 93abaa3..a26cc9f 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -943,6 +943,11 @@ private: newline(); } break; + case tok!"body": + if (!peekBackIs(tok!"}")) + newline(); + writeToken(); + break; case tok!"in": immutable isContract = astInformation.contractLocations.canFindIndex(current.index); if (isContract) diff --git a/tests/allman/issue0241.d.ref b/tests/allman/issue0241.d.ref new file mode 100644 index 0000000..212a726 --- /dev/null +++ b/tests/allman/issue0241.d.ref @@ -0,0 +1,4 @@ +void round() +body +{ +} diff --git a/tests/issue0241.d b/tests/issue0241.d new file mode 100644 index 0000000..212a726 --- /dev/null +++ b/tests/issue0241.d @@ -0,0 +1,4 @@ +void round() +body +{ +} diff --git a/tests/otbs/issue0241.d.ref b/tests/otbs/issue0241.d.ref new file mode 100644 index 0000000..d7576cb --- /dev/null +++ b/tests/otbs/issue0241.d.ref @@ -0,0 +1,3 @@ +void round() +body { +}