This commit is contained in:
Hackerpilot 2015-03-12 11:48:53 -07:00
parent 1ef17c5d78
commit 783410390e
3 changed files with 34 additions and 0 deletions

View File

@ -954,6 +954,11 @@ private:
}
else if (currentIs(tok!"identifier") && peekIs(tok!":"))
{
while ((peekBackIs(tok!"}", true) || peekBackIs(tok!";", true))
&& indents.length && isTempIndent(indents.top()))
{
indents.pop();
}
auto l = indents.indentToMostRecent(tok!"switch");
if (l != -1)
{
@ -970,6 +975,11 @@ private:
}
else if (currentIs(tok!"case") || currentIs(tok!"default"))
{
while ((peekBackIs(tok!"}", true) || peekBackIs(tok!";", true))
&& indents.length && isTempIndent(indents.top()))
{
indents.pop();
}
auto l = indents.indentToMostRecent(tok!"switch");
if (l != -1)
indentLevel = l;

12
tests/issue0092.d Normal file
View File

@ -0,0 +1,12 @@
unittest
{
switch (cast(uint) sz)
{
case 3:
if (!global.params.is64bit)
goto Lmemory;
case 4:
t1 = Type.tint32;
break;
}
}

12
tests/issue0092.d.ref Normal file
View File

@ -0,0 +1,12 @@
unittest
{
switch (cast(uint) sz)
{
case 3:
if (!global.params.is64bit)
goto Lmemory;
case 4:
t1 = Type.tint32;
break;
}
}