From de1f052b73b5f78b5120c4ae0837c48545b75ca2 Mon Sep 17 00:00:00 2001 From: Andreas Zwinkau Date: Sat, 17 Jan 2015 00:21:17 +0100 Subject: [PATCH] return without argument must have no space --- src/dfmt.d | 3 ++- tests/DeclSpacing.d | 7 +++++++ tests/DeclSpacing.d.ref | 20 ++++++++++++++++++++ 3 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 tests/DeclSpacing.d create mode 100644 tests/DeclSpacing.d.ref diff --git a/src/dfmt.d b/src/dfmt.d index f89db25..60f4f6e 100644 --- a/src/dfmt.d +++ b/src/dfmt.d @@ -228,7 +228,8 @@ private: else if (current.type == tok!"return") { writeToken(); - write(" "); + if (current.type != tok!";") + write(" "); } else if (current.type == tok!"switch") formatSwitch(); diff --git a/tests/DeclSpacing.d b/tests/DeclSpacing.d new file mode 100644 index 0000000..17273ac --- /dev/null +++ b/tests/DeclSpacing.d @@ -0,0 +1,7 @@ +import std.stdio; +class Foo {} +import std.conv; +const bar = 42; +void main() {return;} +const baz = 11; +class Foo2:Foo {} diff --git a/tests/DeclSpacing.d.ref b/tests/DeclSpacing.d.ref new file mode 100644 index 0000000..45b04ec --- /dev/null +++ b/tests/DeclSpacing.d.ref @@ -0,0 +1,20 @@ +import std.stdio; + +class Foo +{ +} + +import std.conv; + +const bar = 42; + +void main() +{ + return; +} + +const baz = 11; + +class Foo2 : Foo +{ +}