Typecript和Traceur都将ES6编译为ES5,那么是什么需要traceur-runtime?其次,为什么没有打字稿 - 运行时?
PS:我读到了traceur-runtime 填补了"缺失"函数,并且还提供更多功能,并提供某些功能使用的辅助函数,但我不确定这是什么意思
答案 0 :(得分:3)
其次,为什么没有typescript-runtime
它假定用户将添加他们自己需要的东西,例如如果您正在使用promises,则假定您的运行时具有。
对于类继承这样的其他东西,它提供了帮助内联,例如:
class Base{ }
class Child extends Base { }
生成(通知__extends
):
var __extends = this.__extends || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
var Base = (function () {
function Base() {
}
return Base;
})();
var Child = (function (_super) {
__extends(Child, _super);
function Child() {
_super.apply(this, arguments);
}
return Child;
})(Base);