Put space between a comment and an identifier

Fixes #452.
This commit is contained in:
Eugen Wissner 2020-01-03 15:28:45 +01:00
parent 8f779b33bf
commit 5af05eb1b2
4 changed files with 8 additions and 1 deletions

View File

@ -448,7 +448,7 @@ private:
write(" ");
else if (prevTokenEndLine == currTokenLine || (t == tok!")" && peekIs(tok!"{")))
write(" ");
else if (t == tok!"else")
else if (peekBackIsOneOf(false, tok!"else", tok!"identifier"))
write(" ");
else if (canAddNewline || (peekIs(tok!"{") && t == tok!"}"))
newline();

View File

@ -0,0 +1,2 @@
@nogc //
void foo();

3
tests/issue0452.d Normal file
View File

@ -0,0 +1,3 @@
@nogc
//
void foo();

View File

@ -0,0 +1,2 @@
@nogc //
void foo();