mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
9 lines
127 B
JavaScript
9 lines
127 B
JavaScript
while (a) {
|
|
switch (foo) {
|
|
case 0:
|
|
a();
|
|
continue;
|
|
case 1:
|
|
b();
|
|
}
|
|
}
|