mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
30 lines
700 B
JavaScript
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;
|
|
})();
|