swc/ecmascript/minifier/tests/terser/compress/harmony/issue_2028/input.js

13 lines
188 B
JavaScript
Raw Normal View History

var a = {};
(function (x) {
x.X = function () {
return X;
};
class X {
static hello() {
console.log("hello");
}
}
})(a);
a.X().hello();