mirror of
https://github.com/swc-project/swc.git
synced 2024-12-04 19:46:22 +03:00
708efebac9
- fix comment line's end to be on same line.
20 lines
428 B
JavaScript
20 lines
428 B
JavaScript
c: {
|
|
a();
|
|
switch(1){
|
|
case 2:
|
|
b();
|
|
if (a) break c;
|
|
for(var b = 3; b < 4; b++){
|
|
if (b > 5) break; // 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();
|
|
}
|
|
}
|