This commit is contained in:
Hackerpilot 2015-09-17 03:01:29 -07:00
parent d771955ad3
commit 0ecdc7f3d1
12 changed files with 25 additions and 33 deletions

View File

@ -671,15 +671,21 @@ private:
currentLineLength = 0; currentLineLength = 0;
justAddedExtraNewline = true; justAddedExtraNewline = true;
} }
if (config.dfmt_brace_style != BraceStyle.allman && currentIs(tok!"else")) if (config.dfmt_brace_style == BraceStyle.otbs && peekIs(tok!"else"))
write(" ");
if (!peekIs(tok!",") && !peekIs(tok!")") && !peekIs(tok!";") && !peekIs(tok!"{"))
{ {
write(" ");
index++; index++;
newline();
} }
else else
index++; {
if (!peekIs(tok!",") && !peekIs(tok!")") && !peekIs(tok!";") && !peekIs(tok!"{"))
{
index++;
newline();
}
else
index++;
}
} }
} }

View File

@ -6,8 +6,7 @@ void fun() {
doStuff(); doStuff();
else else
morestuff(); morestuff();
} } else
else
doStuff(); doStuff();
cast(structalign_t) 1; cast(structalign_t) 1;

View File

@ -1,7 +1,6 @@
void f() { void f() {
if (a) { if (a) {
} } else // wat
else // wat
{ {
if (!is_temp_arg_ref) { if (!is_temp_arg_ref) {
if (global.params.isOSX) if (global.params.isOSX)

View File

@ -1,6 +1,4 @@
static if (a) { static if (a) {
} } else static if (b) {
else static if (b) { } else {
}
else {
} }

View File

@ -1,4 +1,3 @@
version (all) { version (all) {
} } else version (none) {
else version (none) {
} }

View File

@ -1,10 +1,8 @@
unittest { unittest {
if (0) if (0)
if (0) { if (0) {
} } else if (0) {
else if (0) { } else {
}
else {
} }
doSomething(); doSomething();
} }

View File

@ -12,8 +12,7 @@ void indent() {
foreach (i; 0 .. indentLevel + tempIndent) { foreach (i; 0 .. indentLevel + tempIndent) {
currentLineLength += config.tabSize; currentLineLength += config.tabSize;
output.put("\t"); output.put("\t");
} } else
else
foreach (i; 0 .. indentLevel + tempIndent) foreach (i; 0 .. indentLevel + tempIndent)
foreach (j; 0 .. config.indentSize) { foreach (j; 0 .. config.indentSize) {
output.put(" "); output.put(" ");

View File

@ -1,8 +1,7 @@
unittest { unittest {
if (x) { if (x) {
version (none) { version (none) {
} } else {
else {
} }
} }
} }

View File

@ -8,7 +8,6 @@ version (Windows) {
} }
version (Windows) { version (Windows) {
void func(); void func();
} } else {
else {
void func(); void func();
} }

View File

@ -9,8 +9,7 @@ unittest {
else { else {
excessivelyLongFunctionName(false); excessivelyLongFunctionName(false);
} }
} } else
else
a(); a();
} }
} }

View File

@ -3,8 +3,7 @@ unittest {
if (true) // comment if (true) // comment
{ {
} } else {
else {
} }
} }

View File

@ -12,12 +12,10 @@ void main() {
return true; return true;
}()) { }()) {
} } else {
else {
} }
} } else {
else {
} }
} }