swc/ecmascript/minifier/tests/terser/compress/sequences/call/input.js
강동윤 c6b22c57f8
feat(es/minifier): Implement minifier partially (#1302)
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
2021-05-20 13:51:30 +09:00

22 lines
317 B
JavaScript

var a = (function () {
return this;
})();
function b() {
console.log("foo");
}
b.c = function () {
console.log(this === b ? "bar" : "baz");
};
(a, b)();
(a, b.c)();
(a,
function () {
console.log(this === a);
})();
new (a, b)();
new (a, b.c)();
new (a,
function () {
console.log(this === a);
})();