Merge pull request #396 from LaurentTreguier/debug-with-param

Debug with param
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-10-09 15:50:10 +02:00 committed by GitHub
commit 810e4b464f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 3 deletions

View File

@ -207,7 +207,7 @@ private:
}
else if (currentIs(tok!"with"))
{
if (indents.length == 0 || (indents.top != tok!"switch" && indents.top != tok!"with"))
if (indents.length == 0 || !indents.topIsOneOf(tok!"switch", tok!"with"))
indents.push(tok!"with");
writeToken();
write(" ");
@ -732,13 +732,14 @@ private:
writeToken();
indents.popWrapIndents();
linebreakHints = [];
while (indents.topIsOneOf(tok!"enum", tok!"try", tok!"catch", tok!"finally"))
while (indents.topIsOneOf(tok!"enum", tok!"try", tok!"catch", tok!"finally", tok!"debug"))
indents.pop();
if (indents.topAre(tok!"static", tok!"else"))
{
indents.pop();
indents.pop();
}
indentLevel = indents.indentLevel;
if (config.dfmt_brace_style == BraceStyle.allman)
{
if (!currentIs(tok!"{"))
@ -1552,7 +1553,7 @@ private:
else
{
if (indents.topIsTemp() && (peekBackIsOneOf(true, tok!"}",
tok!";") && indents.top != tok!";"))
tok!";") && !indents.topIs(tok!";")))
indents.popTempIndents();
indentLevel = indents.indentLevel;
}

View File

@ -0,0 +1,7 @@
void main()
{
debug (0)
foo();
else
bar();
}

4
tests/debug_with_param.d Normal file
View File

@ -0,0 +1,4 @@
void main()
{
debug(0) foo(); else bar();
}

View File

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