评论者:filipematossilva
有方法生成ES5构造器,使其具有ES2015类的行为,包括扩展。TypeScript就是一个很好的例子。
原始代码
`
class A {
constructor(x) {
this.x = x;
}
}
class B extends A {
constructor(foo) {
super(foo);
}
}
const b = new B("bar")
`
转译为
`
var extends = (this && this.extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var A = /* @class / (function () {
function A(x) {
this.x = x;
}
return A;
}());
var B = /* @class / (function (_super) {
__extends(B, _super);
function B(foo) {
return _super.call(this, foo) || this;
}
return B;
}(A));
var b = new B("bar");
`
其中{{__extends}}是TS生成的一个辅助器,可以是内联的或者从名为{{tslib}}的帮助库中导入。
因此看来,从CLJS内部生成ES2015类并不是绝对必要的。