Format do like body after function attributes

This commit is contained in:
Eugen Wissner 2021-06-13 06:42:08 +02:00 committed by The Dlang Bot
parent 821b9be9e9
commit 995c21ab87
4 changed files with 15 additions and 4 deletions

View File

@ -274,6 +274,10 @@ private:
else
formatBlockHeader();
}
else if ((current.text == "body" || current == tok!"do") && peekBackIsFunctionDeclarationEnding())
{
formatKeyword();
}
else if (currentIs(tok!"do"))
{
formatBlockHeader();
@ -321,10 +325,6 @@ private:
inlineElse = true;
formatKeyword();
}
else if (current.text == "body" && peekBackIsFunctionDeclarationEnding())
{
formatKeyword();
}
else if (isBasicType(current.type))
{
writeToken();

View File

@ -0,0 +1,4 @@
void f() return
do
{
}

4
tests/issue0528.d Normal file
View File

@ -0,0 +1,4 @@
void f() return
do
{
}

View File

@ -0,0 +1,3 @@
void f() return
do {
}