No spaces-only lines after imports
Fixes tests/higherorder.d
This commit is contained in:
parent
2278a4c16b
commit
6538abd177
|
@ -190,9 +190,11 @@ private:
|
||||||
{
|
{
|
||||||
if (current.type == tok!";")
|
if (current.type == tok!";")
|
||||||
{
|
{
|
||||||
formatStep();
|
writeToken();
|
||||||
|
tempIndent = 0;
|
||||||
if (!(t == tok!"import" && current.type == tok!"import"))
|
if (!(t == tok!"import" && current.type == tok!"import"))
|
||||||
newline();
|
write("\n");
|
||||||
|
newline();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue