我有一个 classA 的对象,它是从classB继承的
我的问题是:我怎么知道我的对象是否继承自classB
我试过: B类的对象实例
但它不工作!
当我将 instanceof 添加到我得到的任何 ts 文件时
0x800a138f - Microsoft JScript 运行时错误:无法获取属性“原型”的值:对象为空或未定义
var __extends = this.__extends || function (d, b) {
function __() { this.constructor = d; }
__.prototype = b.prototype; //exception occurs in this line
d.prototype = new __();
};