swc/ecmascript/codegen/tests/references/93d4c5dfbddf859d.js
강동윤 f9be576e02
Ecmascript codegen (#40)
Comment is not fully supported yet
2018-10-25 13:17:05 +09:00

13 lines
170 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;