Fix #188
This commit is contained in:
parent
d771955ad3
commit
0ecdc7f3d1
|
@ -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++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,7 @@ void fun() {
|
||||||
doStuff();
|
doStuff();
|
||||||
else
|
else
|
||||||
morestuff();
|
morestuff();
|
||||||
}
|
} else
|
||||||
else
|
|
||||||
doStuff();
|
doStuff();
|
||||||
|
|
||||||
cast(structalign_t) 1;
|
cast(structalign_t) 1;
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
static if (a) {
|
static if (a) {
|
||||||
}
|
} else static if (b) {
|
||||||
else static if (b) {
|
} else {
|
||||||
}
|
|
||||||
else {
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
version (all) {
|
version (all) {
|
||||||
}
|
} else version (none) {
|
||||||
else version (none) {
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
unittest {
|
unittest {
|
||||||
if (0)
|
if (0)
|
||||||
if (0) {
|
if (0) {
|
||||||
}
|
} else if (0) {
|
||||||
else if (0) {
|
} else {
|
||||||
}
|
|
||||||
else {
|
|
||||||
}
|
}
|
||||||
doSomething();
|
doSomething();
|
||||||
}
|
}
|
||||||
|
|
|
@ -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(" ");
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
unittest {
|
unittest {
|
||||||
if (x) {
|
if (x) {
|
||||||
version (none) {
|
version (none) {
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,6 @@ version (Windows) {
|
||||||
}
|
}
|
||||||
version (Windows) {
|
version (Windows) {
|
||||||
void func();
|
void func();
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
void func();
|
void func();
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,8 +9,7 @@ unittest {
|
||||||
else {
|
else {
|
||||||
excessivelyLongFunctionName(false);
|
excessivelyLongFunctionName(false);
|
||||||
}
|
}
|
||||||
}
|
} else
|
||||||
else
|
|
||||||
a();
|
a();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,8 +3,7 @@ unittest {
|
||||||
if (true) // comment
|
if (true) // comment
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,12 +12,10 @@ void main() {
|
||||||
return true;
|
return true;
|
||||||
}()) {
|
}()) {
|
||||||
|
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue