swc/ecmascript/codegen/tests/references/93d4c5dfbddf859d.js
강동윤 7b56b0bc74
Improve codegen (#57)
* travis: make it faster

* better codegen

* Move enable_comments field to config
2018-11-15 21:43:04 +09:00

14 lines
175 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;