Skip to content

Commit

Permalink
Add one more execution tests for swc-project#2011
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Aug 11, 2021
1 parent 59e0427 commit d218f84
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions ecmascript/minifier/tests/exec/issues/2011/2/input.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
return Constructor;
}
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
var ClassA = function ClassA() {
"use strict";
_classCallCheck(this, ClassA);
console.log('Class A');
};
var cls = function () {
var ClassB = /*#__PURE__*/ function () {
"use strict";
function ClassB() {
_classCallCheck(this, ClassB);
console.log('Claas B');
}
_createClass(ClassB, [
{
key: "it",
value: function it() {
console.log('method it - start');
this.bb = new ClassB.MyA();
console.log('method it - end');
}
}
]);
return ClassB;
}();
_defineProperty(ClassB, "MyA", ClassA);
return ClassB;
}();
new cls().it();

0 comments on commit d218f84

Please sign in to comment.