return without argument must have no space

This commit is contained in:
Andreas Zwinkau 2015-01-17 00:21:17 +01:00
parent cb9a4015e7
commit de1f052b73
3 changed files with 29 additions and 1 deletions

View File

@ -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();

7
tests/DeclSpacing.d Normal file
View File

@ -0,0 +1,7 @@
import std.stdio;
class Foo {}
import std.conv;
const bar = 42;
void main() {return;}
const baz = 11;
class Foo2:Foo {}

20
tests/DeclSpacing.d.ref Normal file
View File

@ -0,0 +1,20 @@
import std.stdio;
class Foo
{
}
import std.conv;
const bar = 42;
void main()
{
return;
}
const baz = 11;
class Foo2 : Foo
{
}