[79a0317] | 1 | "use strict";
|
---|
| 2 |
|
---|
| 3 | function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
---|
| 4 |
|
---|
| 5 | Object.defineProperty(exports, "__esModule", {
|
---|
| 6 | value: true
|
---|
| 7 | });
|
---|
| 8 | exports.LinkError = exports.CompileError = exports.RuntimeError = void 0;
|
---|
| 9 |
|
---|
| 10 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
---|
| 11 |
|
---|
| 12 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
---|
| 13 |
|
---|
| 14 | function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
---|
| 15 |
|
---|
| 16 | function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
---|
| 17 |
|
---|
| 18 | function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
---|
| 19 |
|
---|
| 20 | function _wrapNativeSuper(Class) { var _cache = typeof Map === "function" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== "function") { throw new TypeError("Super expression must either be null or a function"); } if (typeof _cache !== "undefined") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); }
|
---|
| 21 |
|
---|
| 22 | function _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _construct = Reflect.construct; } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); }
|
---|
| 23 |
|
---|
| 24 | function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
---|
| 25 |
|
---|
| 26 | function _isNativeFunction(fn) { return Function.toString.call(fn).indexOf("[native code]") !== -1; }
|
---|
| 27 |
|
---|
| 28 | function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
---|
| 29 |
|
---|
| 30 | function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
---|
| 31 |
|
---|
| 32 | var RuntimeError = /*#__PURE__*/function (_Error) {
|
---|
| 33 | _inherits(RuntimeError, _Error);
|
---|
| 34 |
|
---|
| 35 | var _super = _createSuper(RuntimeError);
|
---|
| 36 |
|
---|
| 37 | function RuntimeError() {
|
---|
| 38 | _classCallCheck(this, RuntimeError);
|
---|
| 39 |
|
---|
| 40 | return _super.apply(this, arguments);
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | return RuntimeError;
|
---|
| 44 | }( /*#__PURE__*/_wrapNativeSuper(Error));
|
---|
| 45 |
|
---|
| 46 | exports.RuntimeError = RuntimeError;
|
---|
| 47 |
|
---|
| 48 | var CompileError = /*#__PURE__*/function (_Error2) {
|
---|
| 49 | _inherits(CompileError, _Error2);
|
---|
| 50 |
|
---|
| 51 | var _super2 = _createSuper(CompileError);
|
---|
| 52 |
|
---|
| 53 | function CompileError() {
|
---|
| 54 | _classCallCheck(this, CompileError);
|
---|
| 55 |
|
---|
| 56 | return _super2.apply(this, arguments);
|
---|
| 57 | }
|
---|
| 58 |
|
---|
| 59 | return CompileError;
|
---|
| 60 | }( /*#__PURE__*/_wrapNativeSuper(Error));
|
---|
| 61 |
|
---|
| 62 | exports.CompileError = CompileError;
|
---|
| 63 |
|
---|
| 64 | var LinkError = /*#__PURE__*/function (_Error3) {
|
---|
| 65 | _inherits(LinkError, _Error3);
|
---|
| 66 |
|
---|
| 67 | var _super3 = _createSuper(LinkError);
|
---|
| 68 |
|
---|
| 69 | function LinkError() {
|
---|
| 70 | _classCallCheck(this, LinkError);
|
---|
| 71 |
|
---|
| 72 | return _super3.apply(this, arguments);
|
---|
| 73 | }
|
---|
| 74 |
|
---|
| 75 | return LinkError;
|
---|
| 76 | }( /*#__PURE__*/_wrapNativeSuper(Error));
|
---|
| 77 |
|
---|
| 78 | exports.LinkError = LinkError; |
---|