评论者:filipematossilva
有一些方法可以生成行为如同ES2015类的ES5构造函数,包括扩展。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类。