mirror of
https://github.com/swc-project/swc.git
synced 2024-11-30 15:23:33 +03:00
23 lines
608 B
JavaScript
23 lines
608 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.
|
|
a = new c();
|
|
return a;
|
|
})();
|