From 6ad2fbb6fc8159040d66bcacd276850dcae4cd2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Tr=C3=A9guier?= Date: Mon, 8 Oct 2018 16:08:23 +0200 Subject: [PATCH] Fix #287 - Extra space after import in delegate --- src/dfmt/formatter.d | 1 - tests/allman/issue0287.d.ref | 3 +++ tests/issue0287.d | 3 +++ tests/otbs/issue0287.d.ref | 3 +++ 4 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 tests/allman/issue0287.d.ref create mode 100644 tests/issue0287.d create mode 100644 tests/otbs/issue0287.d.ref diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index b2fe94f..ca39597 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -1444,7 +1444,6 @@ private: && !assumeSorted(astInformation.funLitEndLocations).equalRange( tokens[index].index).empty) { - write(" "); return; } diff --git a/tests/allman/issue0287.d.ref b/tests/allman/issue0287.d.ref new file mode 100644 index 0000000..461addf --- /dev/null +++ b/tests/allman/issue0287.d.ref @@ -0,0 +1,3 @@ +alias foo = typeof({ import std.math; }); +alias bar = typeof({ write("aaa"); }); +alias baz = typeof({ }); diff --git a/tests/issue0287.d b/tests/issue0287.d new file mode 100644 index 0000000..8f22698 --- /dev/null +++ b/tests/issue0287.d @@ -0,0 +1,3 @@ +alias foo = typeof({import std.math;}); +alias bar = typeof({write("aaa");}); +alias baz = typeof({}); diff --git a/tests/otbs/issue0287.d.ref b/tests/otbs/issue0287.d.ref new file mode 100644 index 0000000..461addf --- /dev/null +++ b/tests/otbs/issue0287.d.ref @@ -0,0 +1,3 @@ +alias foo = typeof({ import std.math; }); +alias bar = typeof({ write("aaa"); }); +alias baz = typeof({ });