当你使用继承时,TypeScript 编译器会为你生成 __extends 函数。旧版本的 tsc 编译器生成类似这样的东西
var __extends = this.__extends || function (d, b) {
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
它将 b 的一个实例设置为 d 的原型链。这也几乎是我要手动完成的。
最新版本(0.9)添加了对我来说看起来多余的属性/方法引用的复制:
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 __();
};
有谁知道这是什么原因?