mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
26944e159d
swc_ecma_transforms_base: - Reimplement `hygiene`.
67 lines
2.7 KiB
JavaScript
67 lines
2.7 KiB
JavaScript
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 _getPrototypeOf(o) {
|
|
return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
}, _getPrototypeOf(o);
|
|
}
|
|
function _setPrototypeOf(o, p) {
|
|
return _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
return o.__proto__ = p, o;
|
|
}, _setPrototypeOf(o, p);
|
|
}
|
|
var ref, Bar1 = function() {
|
|
"use strict";
|
|
_classCallCheck(this, Bar1);
|
|
}, Foo = function(Bar) {
|
|
"use strict";
|
|
function Foo() {
|
|
var self, call, obj;
|
|
return _classCallCheck(this, Foo), self = this, call = _getPrototypeOf(Foo).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);
|
|
}(Foo, Bar), Foo;
|
|
}(Bar1), tmp = Symbol.iterator, FooIterator = function() {
|
|
"use strict";
|
|
var Constructor, protoProps, staticProps;
|
|
function FooIterator() {
|
|
_classCallCheck(this, FooIterator);
|
|
}
|
|
return Constructor = FooIterator, protoProps = [
|
|
{
|
|
key: "next",
|
|
value: function() {
|
|
return {
|
|
value: new Foo,
|
|
done: !1
|
|
};
|
|
}
|
|
},
|
|
{
|
|
key: tmp,
|
|
value: function() {
|
|
return this;
|
|
}
|
|
}
|
|
], _defineProperties(Constructor.prototype, protoProps), staticProps && _defineProperties(Constructor, staticProps), FooIterator;
|
|
}();
|
|
(ref = new FooIterator)[0], ref[1];
|