swc/ecmascript/codegen/tests/references/5b9f113c3bdd0c49.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

19 lines
252 B
JavaScript

function a() {
b();
c = 1;
throw "d";
if (c) {
e();
var c;
function b() {
}
;
(function() {
var f;
function e() {
}
;
})();
}
}