Properly recognize debug as block header

This commit is contained in:
Laurent Tréguier 2018-10-10 11:06:12 +02:00 committed by The Dlang Bot
parent 18eea577f8
commit 908f32e433
4 changed files with 25 additions and 5 deletions

View File

@ -230,8 +230,8 @@ private:
writeToken(); writeToken();
write(" "); write(" ");
} }
else if ((isBlockHeader() || currentIs(tok!"version") else if (((isBlockHeader() || currentIs(tok!"version")) && peekIs(tok!"("))
|| currentIs(tok!"debug")) && peekIs(tok!"(", false)) || (currentIs(tok!"debug") && peekIs(tok!"{")))
{ {
if (!assumeSorted(astInformation.constraintLocations).equalRange(current.index).empty) if (!assumeSorted(astInformation.constraintLocations).equalRange(current.index).empty)
formatConstraint(); formatConstraint();
@ -1910,19 +1910,19 @@ const pure @safe @nogc:
} }
} }
bool isBlockHeaderToken(IdType t) bool isBlockHeaderToken(const IdType t)
{ {
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!"in"|| t == tok!"out" || t == tok!"while" || t == tok!"if" || t == tok!"in"|| t == tok!"out"
|| t == tok!"do" || t == tok!"catch" || t == tok!"with" || t == tok!"do" || t == tok!"catch" || t == tok!"with"
|| t == tok!"synchronized" || t == tok!"scope"; || t == tok!"synchronized" || t == tok!"scope" || t == tok!"debug";
} }
bool isBlockHeader(int i = 0) nothrow bool isBlockHeader(int i = 0) nothrow
{ {
if (i + index < 0 || i + index >= tokens.length) if (i + index < 0 || i + index >= tokens.length)
return false; return false;
auto t = tokens[i + index].type; const t = tokens[i + index].type;
bool isExpressionContract; bool isExpressionContract;
if (i + index + 3 < tokens.length) if (i + index + 3 < tokens.length)

View File

@ -0,0 +1,8 @@
void main()
{
if (true)
debug
{
foo();
}
}

6
tests/debug-inside-if.d Normal file
View File

@ -0,0 +1,6 @@
void main()
{
if (true)
debug
{foo();}
}

View File

@ -0,0 +1,6 @@
void main() {
if (true)
debug {
foo();
}
}