Fix #241
This commit is contained in:
parent
049b151bac
commit
d6861cc5a2
|
@ -943,6 +943,11 @@ private:
|
||||||
newline();
|
newline();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case tok!"body":
|
||||||
|
if (!peekBackIs(tok!"}"))
|
||||||
|
newline();
|
||||||
|
writeToken();
|
||||||
|
break;
|
||||||
case tok!"in":
|
case tok!"in":
|
||||||
immutable isContract = astInformation.contractLocations.canFindIndex(current.index);
|
immutable isContract = astInformation.contractLocations.canFindIndex(current.index);
|
||||||
if (isContract)
|
if (isContract)
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
void round()
|
||||||
|
body
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
void round()
|
||||||
|
body
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
void round()
|
||||||
|
body {
|
||||||
|
}
|
Loading…
Reference in New Issue