Fix #188
This commit is contained in:
parent
d771955ad3
commit
0ecdc7f3d1
|
@ -671,15 +671,21 @@ private:
|
|||
currentLineLength = 0;
|
||||
justAddedExtraNewline = true;
|
||||
}
|
||||
if (config.dfmt_brace_style != BraceStyle.allman && currentIs(tok!"else"))
|
||||
write(" ");
|
||||
if (!peekIs(tok!",") && !peekIs(tok!")") && !peekIs(tok!";") && !peekIs(tok!"{"))
|
||||
if (config.dfmt_brace_style == BraceStyle.otbs && peekIs(tok!"else"))
|
||||
{
|
||||
write(" ");
|
||||
index++;
|
||||
newline();
|
||||
}
|
||||
else
|
||||
index++;
|
||||
{
|
||||
if (!peekIs(tok!",") && !peekIs(tok!")") && !peekIs(tok!";") && !peekIs(tok!"{"))
|
||||
{
|
||||
index++;
|
||||
newline();
|
||||
}
|
||||
else
|
||||
index++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6,8 +6,7 @@ void fun() {
|
|||
doStuff();
|
||||
else
|
||||
morestuff();
|
||||
}
|
||||
else
|
||||
} else
|
||||
doStuff();
|
||||
|
||||
cast(structalign_t) 1;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
void f() {
|
||||
if (a) {
|
||||
}
|
||||
else // wat
|
||||
} else // wat
|
||||
{
|
||||
if (!is_temp_arg_ref) {
|
||||
if (global.params.isOSX)
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
static if (a) {
|
||||
}
|
||||
else static if (b) {
|
||||
}
|
||||
else {
|
||||
} else static if (b) {
|
||||
} else {
|
||||
}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
version (all) {
|
||||
}
|
||||
else version (none) {
|
||||
} else version (none) {
|
||||
}
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
unittest {
|
||||
if (0)
|
||||
if (0) {
|
||||
}
|
||||
else if (0) {
|
||||
}
|
||||
else {
|
||||
} else if (0) {
|
||||
} else {
|
||||
}
|
||||
doSomething();
|
||||
}
|
||||
|
|
|
@ -12,8 +12,7 @@ void indent() {
|
|||
foreach (i; 0 .. indentLevel + tempIndent) {
|
||||
currentLineLength += config.tabSize;
|
||||
output.put("\t");
|
||||
}
|
||||
else
|
||||
} else
|
||||
foreach (i; 0 .. indentLevel + tempIndent)
|
||||
foreach (j; 0 .. config.indentSize) {
|
||||
output.put(" ");
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
unittest {
|
||||
if (x) {
|
||||
version (none) {
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,6 @@ version (Windows) {
|
|||
}
|
||||
version (Windows) {
|
||||
void func();
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
void func();
|
||||
}
|
||||
|
|
|
@ -9,8 +9,7 @@ unittest {
|
|||
else {
|
||||
excessivelyLongFunctionName(false);
|
||||
}
|
||||
}
|
||||
else
|
||||
} else
|
||||
a();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,8 +3,7 @@ unittest {
|
|||
if (true) // comment
|
||||
{
|
||||
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,12 +12,10 @@ void main() {
|
|||
return true;
|
||||
}()) {
|
||||
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue