Fix #107
This commit is contained in:
parent
a82eb7aa57
commit
efc9d72c95
|
@ -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(" ");
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue