Fix #185
This commit is contained in:
parent
23df06cdc9
commit
b0d6da28f5
|
@ -202,6 +202,10 @@ private:
|
||||||
{
|
{
|
||||||
formatBlockHeader();
|
formatBlockHeader();
|
||||||
}
|
}
|
||||||
|
else if (currentIs(tok!"do"))
|
||||||
|
{
|
||||||
|
formatBlockHeader();
|
||||||
|
}
|
||||||
else if (currentIs(tok!"else"))
|
else if (currentIs(tok!"else"))
|
||||||
{
|
{
|
||||||
formatElse();
|
formatElse();
|
||||||
|
@ -690,6 +694,8 @@ private:
|
||||||
|
|
||||||
void formatBlockHeader()
|
void formatBlockHeader()
|
||||||
{
|
{
|
||||||
|
//import std.stdio:stderr;
|
||||||
|
//stderr.writeln(__FUNCTION__);
|
||||||
immutable bool a = !currentIs(tok!"version") && !currentIs(tok!"debug");
|
immutable bool a = !currentIs(tok!"version") && !currentIs(tok!"debug");
|
||||||
immutable bool b = a
|
immutable bool b = a
|
||||||
|| astInformation.conditionalWithElseLocations.canFindIndex(current.index);
|
|| astInformation.conditionalWithElseLocations.canFindIndex(current.index);
|
||||||
|
@ -701,8 +707,11 @@ private:
|
||||||
if (shouldPushIndent)
|
if (shouldPushIndent)
|
||||||
indents.push(current.type);
|
indents.push(current.type);
|
||||||
writeToken();
|
writeToken();
|
||||||
write(" ");
|
if (currentIs(tok!"("))
|
||||||
writeParens(false);
|
{
|
||||||
|
write(" ");
|
||||||
|
writeParens(false);
|
||||||
|
}
|
||||||
if (currentIs(tok!"switch") || (currentIs(tok!"final") && peekIs(tok!"switch")))
|
if (currentIs(tok!"switch") || (currentIs(tok!"final") && peekIs(tok!"switch")))
|
||||||
write(" ");
|
write(" ");
|
||||||
else if (currentIs(tok!"comment"))
|
else if (currentIs(tok!"comment"))
|
||||||
|
@ -1475,7 +1484,7 @@ const pure @safe @nogc:
|
||||||
return false;
|
return false;
|
||||||
auto t = tokens[i + index].type;
|
auto t = tokens[i + index].type;
|
||||||
return t == tok!"for" || t == tok!"foreach" || t == tok!"foreach_reverse"
|
return t == tok!"for" || t == tok!"foreach" || t == tok!"foreach_reverse"
|
||||||
|| t == tok!"while" || t == tok!"if" || t == tok!"out"
|
|| t == tok!"while" || t == tok!"if" || t == tok!"out" || t == tok!"do"
|
||||||
|| t == tok!"catch" || t == tok!"with" || t == tok!"synchronized"
|
|| t == tok!"catch" || t == tok!"with" || t == tok!"synchronized"
|
||||||
|| t == tok!"scope";
|
|| t == tok!"scope";
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
do
|
||||||
|
++a;
|
||||||
|
while (true);
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
do
|
||||||
|
{
|
||||||
|
++a;
|
||||||
|
}
|
||||||
|
while (true);
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
do
|
||||||
|
++a;
|
||||||
|
while (true);
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
do
|
||||||
|
{
|
||||||
|
++a;
|
||||||
|
}
|
||||||
|
while (true);
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
unittest {
|
||||||
|
do
|
||||||
|
++a;
|
||||||
|
while (true);
|
||||||
|
}
|
||||||
|
|
||||||
|
unittest {
|
||||||
|
do {
|
||||||
|
++a;
|
||||||
|
}
|
||||||
|
while (true);
|
||||||
|
}
|
Loading…
Reference in New Issue