评论者: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类。