swc/ecmascript/codegen/tests/references/93108a695e5ff29d.js
2019-09-20 23:39:19 +09:00

30 lines
700 B
JavaScript

(function() {
var a;
if (b) return;
/* I would
insert something
there, but I'm sort
of lazy so whatever.
*/
a = new c();
return a;
})()(function() {
var a;
if (b) return;
/* I would insert something there, */
/*
but I'm sort of lazy so
*/
/* whatever. */
a = new c();
return a;
})()(function() {
var a;
if (b) return; // I would insert something there, but I'm sort of lazy so whatever.
// I would insert something there, but I'm sort of lazy so whatever.
a = new c();
return a;
})();