Fix #51
This commit is contained in:
parent
3df6515755
commit
9374214fdf
|
@ -316,7 +316,7 @@ private:
|
||||||
writeToken();
|
writeToken();
|
||||||
if (current.type == tok!"if" || (current.type == tok!"static" && peekIs(tok!"if")))
|
if (current.type == tok!"if" || (current.type == tok!"static" && peekIs(tok!"if")))
|
||||||
write(" ");
|
write(" ");
|
||||||
else if (current.type != tok!"{")
|
else if (current.type != tok!"{" && current.type != tok!"comment")
|
||||||
{
|
{
|
||||||
pushIndent();
|
pushIndent();
|
||||||
newline();
|
newline();
|
||||||
|
@ -677,8 +677,10 @@ private:
|
||||||
&& !peekBackIs(tok!"}") && !peekBackIs(tok!";"))
|
&& !peekBackIs(tok!"}") && !peekBackIs(tok!";"))
|
||||||
{
|
{
|
||||||
if (config.braceStyle == BraceStyle.otbs)
|
if (config.braceStyle == BraceStyle.otbs)
|
||||||
|
{
|
||||||
write(" ");
|
write(" ");
|
||||||
else
|
}
|
||||||
|
else if (!peekBackIs(tok!"comment") || tokens[index - 1].text[0 .. 2] != "//")
|
||||||
newline();
|
newline();
|
||||||
}
|
}
|
||||||
write("{");
|
write("{");
|
||||||
|
@ -711,7 +713,6 @@ private:
|
||||||
}
|
}
|
||||||
if (config.braceStyle == BraceStyle.otbs)
|
if (config.braceStyle == BraceStyle.otbs)
|
||||||
{
|
{
|
||||||
index++;
|
|
||||||
if (index < tokens.length && current.type == tok!"else")
|
if (index < tokens.length && current.type == tok!"else")
|
||||||
write(" ");
|
write(" ");
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
void f()
|
||||||
|
{
|
||||||
|
if (a)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
else // wat
|
||||||
|
{
|
||||||
|
if (!is_temp_arg_ref)
|
||||||
|
{
|
||||||
|
if (global.params.isOSX)
|
||||||
|
buf.writeByte('_');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
void f()
|
||||||
|
{
|
||||||
|
if (a)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
else // wat
|
||||||
|
{
|
||||||
|
if (!is_temp_arg_ref)
|
||||||
|
{
|
||||||
|
if (global.params.isOSX)
|
||||||
|
buf.writeByte('_');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
Loading…
Reference in New Issue