swc/tests/tsc-references/async/es2017/asyncMethodWithSuperConflict_es6/input.ts/es5.2.minified/output.js

205 lines
10 KiB
JavaScript
Raw Normal View History

import regeneratorRuntime from "regenerator-runtime";
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
try {
var info = gen[key](arg), value = info.value;
} catch (error) {
reject(error);
return;
}
info.done ? resolve(value) : Promise.resolve(value).then(_next, _throw);
}
function _asyncToGenerator(fn) {
return function() {
var self = this, args = arguments;
return new Promise(function(resolve, reject) {
var gen = fn.apply(self, args);
function _next(value) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
}
function _throw(err) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
}
_next(void 0);
});
};
}
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 || !1, descriptor.configurable = !0, "value" in descriptor && (descriptor.writable = !0), Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
return protoProps && _defineProperties(Constructor.prototype, protoProps), staticProps && _defineProperties(Constructor, staticProps), Constructor;
}
function _get(target, property, receiver) {
return _get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get : function _get(target, property, receiver) {
var base = _superPropBase(target, property);
if (base) {
var desc = Object.getOwnPropertyDescriptor(base, property);
return desc.get ? desc.get.call(receiver) : desc.value;
}
}, _get(target, property, receiver || target);
}
function _getPrototypeOf(o) {
return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
return o.__proto__ || Object.getPrototypeOf(o);
}, _getPrototypeOf(o);
}
function set(target, property, value, receiver) {
return set = "undefined" != typeof Reflect && Reflect.set ? Reflect.set : function set(target, property, value, receiver) {
var obj, key, value, desc, base = _superPropBase(target, property);
if (base) {
if ((desc = Object.getOwnPropertyDescriptor(base, property)).set) return desc.set.call(receiver, value), !0;
if (!desc.writable) return !1;
}
if (desc = Object.getOwnPropertyDescriptor(receiver, property)) {
if (!desc.writable) return !1;
desc.value = value, Object.defineProperty(receiver, property, desc);
} else obj = receiver, value = value, (key = property) in obj ? Object.defineProperty(obj, key, {
value: value,
enumerable: !0,
configurable: !0,
writable: !0
}) : obj[key] = value;
return !0;
}, set(target, property, value, receiver);
}
function _set(target, property, value, receiver, isStrict) {
if (!set(target, property, value, receiver || target) && isStrict) throw new Error("failed to set property");
return value;
}
function _setPrototypeOf(o, p) {
return _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
return o.__proto__ = p, o;
}, _setPrototypeOf(o, p);
}
function _superPropBase(object, property) {
for(; !Object.prototype.hasOwnProperty.call(object, property) && null !== (object = _getPrototypeOf(object)););
return object;
}
function _toConsumableArray(arr) {
return (function(arr) {
if (Array.isArray(arr)) {
for(var i = 0, arr2 = new Array(arr.length); i < arr.length; i++)arr2[i] = arr[i];
return arr2;
}
})(arr) || (function(iter) {
if (Symbol.iterator in Object(iter) || "[object Arguments]" === Object.prototype.toString.call(iter)) return Array.from(iter);
})(arr) || (function() {
throw new TypeError("Invalid attempt to spread non-iterable instance");
})();
}
var A = function() {
"use strict";
function A() {
_classCallCheck(this, A);
}
return _createClass(A, [
{
key: "x",
value: function() {
}
},
{
key: "y",
value: function() {
}
}
]), A;
}(), B = function(A) {
"use strict";
function B() {
var self, call, obj;
return _classCallCheck(this, B), self = this, call = _getPrototypeOf(B).apply(this, arguments), call && ("object" == ((obj = call) && "undefined" != typeof Symbol && obj.constructor === Symbol ? "symbol" : typeof obj) || "function" == typeof call) ? call : (function(self) {
if (void 0 === self) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
return self;
})(self);
}
return !function(subClass, superClass) {
if ("function" != typeof superClass && null !== superClass) throw new TypeError("Super expression must either be null or a function");
subClass.prototype = Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
writable: !0,
configurable: !0
}
}), superClass && _setPrototypeOf(subClass, superClass);
}(B, A), _createClass(B, [
{
key: "simple",
value: function() {
var _instance, _instance1, _instance2, _this = this, _this1 = this, _this2 = this, _this3 = this, _this4 = this, _super_x = function() {
for(var _len = arguments.length, _args = new Array(_len), _key = 0; _key < _len; _key++)_args[_key] = arguments[_key];
return (_instance = _get(_getPrototypeOf(B.prototype), "x", _this)).call.apply(_instance, [
_this
].concat(_toConsumableArray(_args)));
}, _super_y = function() {
for(var _len = arguments.length, _args = new Array(_len), _key = 0; _key < _len; _key++)_args[_key] = arguments[_key];
return (_instance1 = _get(_getPrototypeOf(B.prototype), "y", _this1)).call.apply(_instance1, [
_this1
].concat(_toConsumableArray(_args)));
}, _super_method = function() {
for(var _len = arguments.length, _args = new Array(_len), _key = 0; _key < _len; _key++)_args[_key] = arguments[_key];
return (_instance2 = _get(_getPrototypeOf(B.prototype), "x", _this2)).call.apply(_instance2, [
_this2
].concat(_toConsumableArray(_args)));
};
return _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
var _super, _superIndex, a, b;
return regeneratorRuntime.wrap(function(_ctx) {
for(;;)switch(_ctx.prev = _ctx.next){
case 0:
_super = null, _superIndex = null, _super_x(), _super_y(), _super_method(), a = _get(_getPrototypeOf(B.prototype), "x", _this3), b = _get(_getPrototypeOf(B.prototype), "x", _this4);
case 7:
case "end":
return _ctx.stop();
}
}, _callee);
}))();
}
},
{
key: "advanced",
value: function() {
var _instance, _instance1, _this = this, _this1 = this, _this2 = this, _this3 = this, _this4 = this, _this5 = this, _this6 = this, _this7 = this, _super_x = function() {
for(var _len = arguments.length, _args = new Array(_len), _key = 0; _key < _len; _key++)_args[_key] = arguments[_key];
return (_instance = _get(_getPrototypeOf(B.prototype), "x", _this)).call.apply(_instance, [
_this
].concat(_toConsumableArray(_args)));
}, _super_method = function() {
for(var _len = arguments.length, _args = new Array(_len), _key = 0; _key < _len; _key++)_args[_key] = arguments[_key];
return (_instance1 = _get(_getPrototypeOf(B.prototype), "x", _this1)).call.apply(_instance1, [
_this1
].concat(_toConsumableArray(_args)));
}, _super_x1 = function() {
return _get(_getPrototypeOf(B.prototype), "x", _this6);
}, _super_method1 = function() {
return _get(_getPrototypeOf(B.prototype), "x", _this7);
};
return _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
var _super, _superIndex, f, a, b;
return regeneratorRuntime.wrap(function(_ctx) {
for(;;)switch(_ctx.prev = _ctx.next){
case 0:
var ref, ref1, _args, _args1;
_super = null, _superIndex = null, f = function() {
}, _super_x(), _super_method(), a = _get(_getPrototypeOf(B.prototype), "x", _this2), b = _get(_getPrototypeOf(B.prototype), "x", _this3), _args = f, _set(_getPrototypeOf(B.prototype), "x", _args, _this4, !0), _args1 = f, _set(_getPrototypeOf(B.prototype), "x", _args1, _this5, !0), ref = {
f: f
}, _super_x1() = ref.f, ref1 = {
f: f
}, _super_method1() = ref1.f;
case 11:
case "end":
return _ctx.stop();
}
}, _callee);
}))();
}
}
]), B;
}(A);