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(" ");
break;
default:
assert (false, str(current.type));
writeToken();
break;
}
}
else if (currentIs(tok!"identifier"))
@ -594,7 +595,7 @@ private:
}
}
else
assert (false, str(current.type));
writeToken();
}
void regenLineBreakHintsIfNecessary(immutable size_t i)
@ -914,9 +915,11 @@ private:
}
}
indentLevel = l;
assert (currentIs(tok!"}"));
writeToken();
newline();
if (currentIs(tok!"}"))
{
writeToken();
newline();
}
}
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();
}
}