Description
jsoo uses this compilation scheme to detect the global object:
(function(joo_global_object)
{"use strict";
console.log(joo_global_object);
// ...
}
(function(){return this}()));
This fails when the generated JavaScript is bundled together with other JavaScript files that have a global "use strict";
stanza, as this
doesn't become the global object in strict mode.