This commit is contained in:
Hackerpilot 2015-03-16 15:45:22 -07:00
parent a82eb7aa57
commit efc9d72c95
4 changed files with 48 additions and 4 deletions

View File

@ -457,10 +457,10 @@ private:
void formatColon() void formatColon()
{ {
regenLineBreakHintsIfNecessary(index); regenLineBreakHintsIfNecessary(index);
if (linebreakHints.canFindIndex(index)) if (linebreakHints.canFindIndex(index))
{ {
pushWrapIndent(); pushWrapIndent();
newline(); newline();
writeToken(); writeToken();
write(" "); write(" ");
@ -605,8 +605,9 @@ private:
void formatSwitch() void formatSwitch()
{ {
if (indents.length == 0 || indents.top != tok!"with") if (indents.length > 0 && indents.top == tok!"with")
indents.push(tok!"switch"); indents.pop();
indents.push(tok!"switch");
writeToken(); // switch writeToken(); // switch
write(" "); write(" ");
} }

View File

@ -0,0 +1,15 @@
void msgpackToGValue(MsgValue input)
{
with (MsgValue.Type) switch (input.type)
{
case boolean:
a();
break;
case unsigned:
b();
break;
default:
assert(false);
}
return retVal;
}

15
tests/issue0107.d Normal file
View File

@ -0,0 +1,15 @@
void msgpackToGValue(MsgValue input)
{
with (MsgValue.Type) switch (input.type)
{
case boolean:
a();
break;
case unsigned:
b();
break;
default:
assert(false);
}
return retVal;
}

View File

@ -0,0 +1,13 @@
void msgpackToGValue(MsgValue input) {
with (MsgValue.Type) switch (input.type) {
case boolean:
a();
break;
case unsigned:
b();
break;
default:
assert(false);
}
return retVal;
}