Member predicate SwitchCase::getNextSwitchCase
Gets the next SwitchCase belonging to the same ‘switch’
statement, if any.
For example, for
switch (i) {
case 5:
x = 1;
break;
case 6:
case 7:
{ x = 2; break; }
default:
{ x = 3; }
x = 4;
break;
}
the case 5: has result case 6:, which has result case 7:,
which has result default:, which has no result.