Properly recognize debug as block header
This commit is contained in:
parent
18eea577f8
commit
908f32e433
|
@ -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)
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
if (true)
|
||||||
|
debug
|
||||||
|
{
|
||||||
|
foo();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
if (true)
|
||||||
|
debug
|
||||||
|
{foo();}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
void main() {
|
||||||
|
if (true)
|
||||||
|
debug {
|
||||||
|
foo();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue