mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
13 lines
127 B
JavaScript
13 lines
127 B
JavaScript
|
a = 1;
|
||
|
if (b) c();
|
||
|
a = 2;
|
||
|
for(d = 3; d < 4; d++)e.f(d);
|
||
|
a = 5;
|
||
|
for(; d < 6; d++)e.f(d);
|
||
|
a = 7;
|
||
|
switch(b){
|
||
|
}
|
||
|
a = 8;
|
||
|
with (g){
|
||
|
}
|