该规范提到以下功能将用于扩展:
var __extends = this.__extends || function(d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function f() { this.constructor = d; }
f.prototype = b.prototype;
d.prototype = new f();
}
但是当前生成的功能是:
var __extends = this.__extends || function (d, b) {
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
这打破了静态继承:
class A{
fooMem=10;
static fooStat=10;
}
class B extends A{};
var b = new B();
alert(b.fooMem.toString());
alert(B.fooStat.toString());
如果使用提到的文档扩展功能,这将起作用:测试
有人知道为什么没有使用文档中提到的功能吗?