1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
//// [controlFlowInstanceofExtendsFunction.ts]
declare global {
interface Function {
now(): string;
}
}
Function.prototype.now = function () {
return "now"
}
class X {
static now() {
return {}
}
why() {
}
}
class Y {
}
console.log(X.now()) // works as expected
console.log(Y.now()) // works as expected
export const x: X | number = Math.random() > 0.5 ? new X() : 1
if (x instanceof X) {
x.why() // should compile
}
//// [controlFlowInstanceofExtendsFunction.js]
"use strict";
exports.__esModule = true;
Function.prototype.now = function () {
return "now";
};
var X = /** @class */ (function () {
function X() {
}
X.now = function () {
return {};
};
X.prototype.why = function () {
};
return X;
}());
var Y = /** @class */ (function () {
function Y() {
}
return Y;
}());
console.log(X.now()); // works as expected
console.log(Y.now()); // works as expected
exports.x = Math.random() > 0.5 ? new X() : 1;
if (exports.x instanceof X) {
exports.x.why(); // should compile
}
|