Format do like body after function attributes
This commit is contained in:
parent
821b9be9e9
commit
995c21ab87
|
@ -274,6 +274,10 @@ private:
|
||||||
else
|
else
|
||||||
formatBlockHeader();
|
formatBlockHeader();
|
||||||
}
|
}
|
||||||
|
else if ((current.text == "body" || current == tok!"do") && peekBackIsFunctionDeclarationEnding())
|
||||||
|
{
|
||||||
|
formatKeyword();
|
||||||
|
}
|
||||||
else if (currentIs(tok!"do"))
|
else if (currentIs(tok!"do"))
|
||||||
{
|
{
|
||||||
formatBlockHeader();
|
formatBlockHeader();
|
||||||
|
@ -321,10 +325,6 @@ private:
|
||||||
inlineElse = true;
|
inlineElse = true;
|
||||||
formatKeyword();
|
formatKeyword();
|
||||||
}
|
}
|
||||||
else if (current.text == "body" && peekBackIsFunctionDeclarationEnding())
|
|
||||||
{
|
|
||||||
formatKeyword();
|
|
||||||
}
|
|
||||||
else if (isBasicType(current.type))
|
else if (isBasicType(current.type))
|
||||||
{
|
{
|
||||||
writeToken();
|
writeToken();
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
void f() return
|
||||||
|
do
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
void f() return
|
||||||
|
do
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
void f() return
|
||||||
|
do {
|
||||||
|
}
|
Loading…
Reference in New Issue