Fix issue 483: indent continuing case statements on the same level
This commit is contained in:
parent
e4f2f20720
commit
b5dbb0e031
|
@ -1715,7 +1715,14 @@ private:
|
||||||
}
|
}
|
||||||
else if (currentIs(tok!"case") || currentIs(tok!"default"))
|
else if (currentIs(tok!"case") || currentIs(tok!"default"))
|
||||||
{
|
{
|
||||||
if (peekBackIs(tok!"}", true) || peekBackIs(tok!";", true))
|
|
||||||
|
if (peekBackIs(tok!"}", true) || peekBackIs(tok!";", true)
|
||||||
|
/**
|
||||||
|
* The following code is valid and should be indented flatly
|
||||||
|
* case A:
|
||||||
|
* case B:
|
||||||
|
*/
|
||||||
|
|| peekBackIs(tok!":", true))
|
||||||
{
|
{
|
||||||
indents.popTempIndents();
|
indents.popTempIndents();
|
||||||
if (indents.topIs(tok!"case"))
|
if (indents.topIs(tok!"case"))
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
module tests.issue0483;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
switch (0)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
label:
|
||||||
|
case 3:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
--align_switch_statements=false
|
|
@ -0,0 +1,15 @@
|
||||||
|
module tests.issue0483;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
switch (0)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
label:
|
||||||
|
case 3:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
module tests.issue0483;
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
switch (0) {
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
label:
|
||||||
|
case 3:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue