From 98686f7dd18b7f36b52c1aab8ba600040d9cffe4 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Tue, 12 May 2015 16:40:33 -0700 Subject: [PATCH] Fix #152 --- src/dfmt/formatter.d | 4 ++-- tests/allman/issue0152.d.ref | 1 + tests/issue0152.d | 1 + tests/otbs/issue0152.d.ref | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 tests/allman/issue0152.d.ref create mode 100644 tests/issue0152.d create mode 100644 tests/otbs/issue0152.d.ref diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 276e685..7e4c3bc 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -699,7 +699,7 @@ private: } break; case tok!"in": - auto isContract = astInformation.contractLocations.canFindIndex(current.index); + immutable isContract = astInformation.contractLocations.canFindIndex(current.index); if (isContract) newline(); else if (!peekBackIsOneOf(false, tok!"(", tok!",", tok!"!")) @@ -709,7 +709,7 @@ private: write(" "); break; case tok!"is": - if (!peekBackIsOneOf(false, tok!"!", tok!"(", tok!",", tok!"}") && !peekBackIsKeyword()) + if (!peekBackIsOneOf(false, tok!"!", tok!"(", tok!",", tok!"}", tok!"=") && !peekBackIsKeyword()) write(" "); writeToken(); if (!currentIs(tok!"(") && !currentIs(tok!"{")) diff --git a/tests/allman/issue0152.d.ref b/tests/allman/issue0152.d.ref new file mode 100644 index 0000000..d6a32a2 --- /dev/null +++ b/tests/allman/issue0152.d.ref @@ -0,0 +1 @@ +enum IsPathHandler(alias T) = is(PathHandler == typeof(T)); diff --git a/tests/issue0152.d b/tests/issue0152.d new file mode 100644 index 0000000..377aaf9 --- /dev/null +++ b/tests/issue0152.d @@ -0,0 +1 @@ +enum IsPathHandler(alias T) = is(PathHandler == typeof(T)); diff --git a/tests/otbs/issue0152.d.ref b/tests/otbs/issue0152.d.ref new file mode 100644 index 0000000..d6a32a2 --- /dev/null +++ b/tests/otbs/issue0152.d.ref @@ -0,0 +1 @@ +enum IsPathHandler(alias T) = is(PathHandler == typeof(T));