diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 9d740aa..ffb4328 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -404,7 +404,8 @@ private: else write(" "); } - else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type))) + else if (index < tokens.length && (currentIs(tok!"@") || isBasicType(tokens[index].type) + || currentIs(tok!"identifier"))) write(" "); } diff --git a/tests/allman/issue0148.d.ref b/tests/allman/issue0148.d.ref new file mode 100644 index 0000000..ba5e2f2 --- /dev/null +++ b/tests/allman/issue0148.d.ref @@ -0,0 +1,7 @@ +class Foo +{ + @property Socket socket() + { + return this.socket; + } +} diff --git a/tests/issue0148.d b/tests/issue0148.d new file mode 100644 index 0000000..0bf74f0 --- /dev/null +++ b/tests/issue0148.d @@ -0,0 +1,7 @@ +class Foo +{ + @property Socket socket() + { + return this.socket; + } +} diff --git a/tests/otbs/issue0148.d.ref b/tests/otbs/issue0148.d.ref new file mode 100644 index 0000000..46b7751 --- /dev/null +++ b/tests/otbs/issue0148.d.ref @@ -0,0 +1,5 @@ +class Foo { + @property Socket socket() { + return this.socket; + } +}