This commit is contained in:
Hackerpilot 2015-03-09 23:32:25 -07:00
parent b256213b8e
commit 62d0378740
3 changed files with 34 additions and 5 deletions

View File

@ -580,7 +580,8 @@ private:
write(" "); write(" ");
break; break;
default: default:
assert (false, str(current.type)); writeToken();
break;
} }
} }
else if (currentIs(tok!"identifier")) else if (currentIs(tok!"identifier"))
@ -594,7 +595,7 @@ private:
} }
} }
else else
assert (false, str(current.type)); writeToken();
} }
void regenLineBreakHintsIfNecessary(immutable size_t i) void regenLineBreakHintsIfNecessary(immutable size_t i)
@ -914,9 +915,11 @@ private:
} }
} }
indentLevel = l; indentLevel = l;
assert (currentIs(tok!"}")); if (currentIs(tok!"}"))
writeToken(); {
newline(); writeToken();
newline();
}
} }
int currentTokenLength() pure @safe @nogc int currentTokenLength() pure @safe @nogc

12
tests/issue0082.d Normal file
View File

@ -0,0 +1,12 @@
unittest
{
label:
if (x)
{
}
Label:
// comment
statement();
}
}

14
tests/issue0082.d.ref Normal file
View File

@ -0,0 +1,14 @@
unittest
{
label:
if (x)
{
}
Label:
// comment
statement();
}
}