address feedback

This commit is contained in:
vvakame
2016-11-25 13:45:37 +09:00
parent 9e6a83db20
commit 7ea3734240
666 changed files with 4006 additions and 1326 deletions

View File

@@ -3338,7 +3338,11 @@ namespace ts {
priority: 0,
text: `
var __extends = (this && this.__extends) || function (d, b) {
Object.setPrototypeOf(d, b);
if (typeof Object.setPrototypeOf === "function") {
Object.setPrototypeOf(d, b);
} else {
d.__proto__ = b;
}
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};`