TypeScript/tests/baselines/reference/typeGuardsDefeat.js
Sheetal Nandi 2088a89223 Test cases to make sure typeguard is defeated in case of function calls
From spec:
Also note that it is possible to defeat a type guard by calling a function that changes the type of the guarded variable.
2014-11-06 13:04:11 -08:00

75 lines
1.5 KiB
JavaScript

//// [typeGuardsDefeat.ts]
// Also note that it is possible to defeat a type guard by calling a function that changes the
// type of the guarded variable.
function foo(x: number | string) {
function f() {
x = 10;
}
if (typeof x === "string") {
f();
return x.length; // string
}
else {
return x++; // number
}
}
function foo2(x: number | string) {
if (typeof x === "string") {
return x.length; // string
}
else {
(function f() {
x = 10;
})();
return x++; // number
}
}
function foo3(x: number | string) {
if (typeof x === "string") {
return x.length; // string
}
else {
(() => {
x = 10;
})();
return x++; // number
}
}
//// [typeGuardsDefeat.js]
// Also note that it is possible to defeat a type guard by calling a function that changes the
// type of the guarded variable.
function foo(x) {
function f() {
x = 10;
}
if (typeof x === "string") {
f();
return x.length; // string
}
else {
return x++; // number
}
}
function foo2(x) {
if (typeof x === "string") {
return x.length; // string
}
else {
(function f() {
x = 10;
})();
return x++; // number
}
}
function foo3(x) {
if (typeof x === "string") {
return x.length; // string
}
else {
(function () {
x = 10;
})();
return x++; // number
}
}