This commit is contained in:
Hackerpilot 2015-03-07 23:37:30 -08:00
parent 3df6515755
commit 9374214fdf
3 changed files with 34 additions and 3 deletions

View File

@ -316,7 +316,7 @@ private:
writeToken();
if (current.type == tok!"if" || (current.type == tok!"static" && peekIs(tok!"if")))
write(" ");
else if (current.type != tok!"{")
else if (current.type != tok!"{" && current.type != tok!"comment")
{
pushIndent();
newline();
@ -677,8 +677,10 @@ private:
&& !peekBackIs(tok!"}") && !peekBackIs(tok!";"))
{
if (config.braceStyle == BraceStyle.otbs)
{
write(" ");
else
}
else if (!peekBackIs(tok!"comment") || tokens[index - 1].text[0 .. 2] != "//")
newline();
}
write("{");
@ -711,7 +713,6 @@ private:
}
if (config.braceStyle == BraceStyle.otbs)
{
index++;
if (index < tokens.length && current.type == tok!"else")
write(" ");
}

15
tests/issue0051.d Normal file
View File

@ -0,0 +1,15 @@
void f()
{
if (a)
{
}
else // wat
{
if (!is_temp_arg_ref)
{
if (global.params.isOSX)
buf.writeByte('_');
}
}
return;
}

15
tests/issue0051.d.ref Normal file
View File

@ -0,0 +1,15 @@
void f()
{
if (a)
{
}
else // wat
{
if (!is_temp_arg_ref)
{
if (global.params.isOSX)
buf.writeByte('_');
}
}
return;
}