swc/ecmascript/codegen/tests/references/93d4c5dfbddf859d.js

13 lines
170 B
JavaScript
Raw Normal View History

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;