Fix #361 - Unexpected empty new line if function header ends with a comment

This commit is contained in:
Kotet 2019-05-13 19:06:59 +09:00
parent 6d2a56e15e
commit 3af8edc57f
4 changed files with 42 additions and 1 deletions

View File

@ -473,7 +473,7 @@ private:
else if (!currentIs(tok!"{"))
write(" ");
}
else if (!currentIs(tok!"{"))
else if (!currentIs(tok!"{") && !currentIs(tok!"in") && !currentIs(tok!"out"))
{
if (currentIs(tok!")") && indents.topIs(tok!","))
indents.pop();

View File

@ -0,0 +1,15 @@
void foo() /**/
in
{
}
body
{
}
void bar() /**/
out
{
}
body
{
}

15
tests/issue0361.d Normal file
View File

@ -0,0 +1,15 @@
void foo() /**/
in
{
}
body
{
}
void bar() /**/
out
{
}
body
{
}

View File

@ -0,0 +1,11 @@
void foo() /**/
in {
}
body {
}
void bar() /**/
out {
}
body {
}