This commit is contained in:
Hackerpilot 2015-09-16 17:07:39 -07:00
parent 23df06cdc9
commit b0d6da28f5
4 changed files with 54 additions and 3 deletions

View File

@ -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();
if (currentIs(tok!"("))
{
write(" "); write(" ");
writeParens(false); 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";
} }

View File

@ -0,0 +1,15 @@
unittest
{
do
++a;
while (true);
}
unittest
{
do
{
++a;
}
while (true);
}

15
tests/issue0185.d Normal file
View File

@ -0,0 +1,15 @@
unittest
{
do
++a;
while (true);
}
unittest
{
do
{
++a;
}
while (true);
}

View File

@ -0,0 +1,12 @@
unittest {
do
++a;
while (true);
}
unittest {
do {
++a;
}
while (true);
}