2018-10-25 07:17:05 +03:00
|
|
|
c: {
|
|
|
|
a();
|
|
|
|
switch(1){
|
|
|
|
case 2:
|
|
|
|
b();
|
|
|
|
if (a) break c;
|
|
|
|
for(var b = 3; b < 4; b++){
|
|
|
|
if (b > 5) break;
|
2018-11-05 07:12:52 +03:00
|
|
|
// this break refers to the for, not to the switch; thus it
|
|
|
|
// shouldn't ruin our optimization
|
|
|
|
d.// this break refers to the for, not to the switch; thus it
|
|
|
|
// shouldn't ruin our optimization
|
|
|
|
d.e(// this break refers to the for, not to the switch; thus it
|
|
|
|
// shouldn't ruin our optimization
|
|
|
|
d.e(b);
|
2018-10-25 07:17:05 +03:00
|
|
|
}
|
2018-11-05 07:12:52 +03:00
|
|
|
// this break refers to the for, not to the switch; thus it
|
|
|
|
// shouldn't ruin our optimization
|
|
|
|
d.e(b);
|
|
|
|
}
|
|
|
|
f();
|
2018-10-25 07:17:05 +03:00
|
|
|
case 6 + 7:
|
2018-11-05 07:12:52 +03:00
|
|
|
// this break refers to the for, not to the switch; thus it
|
|
|
|
// shouldn't ruin our optimization
|
|
|
|
d.e(b);
|
|
|
|
}
|
|
|
|
f();
|
|
|
|
case 6+7:
|
|
|
|
g();
|
2018-10-25 07:17:05 +03:00
|
|
|
break;
|
|
|
|
default:
|
2018-11-05 07:12:52 +03:00
|
|
|
// this break refers to the for, not to the switch; thus it
|
|
|
|
// shouldn't ruin our optimization
|
|
|
|
d.e(b);
|
|
|
|
}
|
|
|
|
f();
|
|
|
|
case 6+7:
|
|
|
|
g();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
h();
|
2018-10-25 07:17:05 +03:00
|
|
|
}
|
|
|
|
}
|