swc/crates/swc_ecma_codegen/tests/test262/93d4c5dfbddf859d.js

14 lines
176 B
JavaScript

if (a) {
if (b) c;
} else d;
if (a) {
if (b) throw c;
} else d;
if (a) {
with (a)if (b) throw c;
} else d;
if (a) {
do if (b) throw c;
while (a);
} else d;