From aec084e23e5ca5f08090e9dd0171c67c89d1ee70 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Wed, 8 Apr 2015 18:16:50 -0700 Subject: [PATCH] Fix #126 --- src/dfmt/formatter.d | 10 ++++++++++ tests/allman/issue0126.d.ref | 7 +++++++ tests/issue0126.d | 7 +++++++ tests/otbs/issue0126.d.ref | 6 ++++++ 4 files changed, 30 insertions(+) create mode 100644 tests/allman/issue0126.d.ref create mode 100644 tests/issue0126.d create mode 100644 tests/otbs/issue0126.d.ref diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 91b0caf..1847cbc 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -657,6 +657,16 @@ private: case tok!"cast": writeToken(); break; + case tok!"try": + if (peekIs(tok!"{")) + writeToken(); + else + { + writeToken(); + indents.push(tok!"try"); + newline(); + } + break; case tok!"in": case tok!"is": writeToken(); diff --git a/tests/allman/issue0126.d.ref b/tests/allman/issue0126.d.ref new file mode 100644 index 0000000..e7f4684 --- /dev/null +++ b/tests/allman/issue0126.d.ref @@ -0,0 +1,7 @@ +unittest +{ + try + doStuff(); + catch (Exception ex) + complain(ex.msg); +} diff --git a/tests/issue0126.d b/tests/issue0126.d new file mode 100644 index 0000000..5f3896d --- /dev/null +++ b/tests/issue0126.d @@ -0,0 +1,7 @@ +unittest +{ + try + doStuff(); + catch (Exception ex) + complain(ex.msg); +} diff --git a/tests/otbs/issue0126.d.ref b/tests/otbs/issue0126.d.ref new file mode 100644 index 0000000..a79c876 --- /dev/null +++ b/tests/otbs/issue0126.d.ref @@ -0,0 +1,6 @@ +unittest { + try + doStuff(); + catch (Exception ex) + complain(ex.msg); +}