TypeScript/tests/baselines/reference/typeGuardsInForStatement.js
2016-03-26 08:21:43 -07:00

49 lines
1.1 KiB
TypeScript

//// [typeGuardsInForStatement.ts]
let cond: boolean;
function a(x: string | number) {
for (x = undefined; typeof x !== "number"; x = undefined) {
x; // string
}
x; // number
}
function b(x: string | number) {
for (x = undefined; typeof x !== "number"; x = undefined) {
x; // string
if (cond) continue;
}
x; // number
}
function c(x: string | number) {
for (x = undefined; typeof x !== "number"; x = undefined) {
x; // string
if (cond) break;
}
x; // string | number
}
//// [typeGuardsInForStatement.js]
var cond;
function a(x) {
for (x = undefined; typeof x !== "number"; x = undefined) {
x; // string
}
x; // number
}
function b(x) {
for (x = undefined; typeof x !== "number"; x = undefined) {
x; // string
if (cond)
continue;
}
x; // number
}
function c(x) {
for (x = undefined; typeof x !== "number"; x = undefined) {
x; // string
if (cond)
break;
}
x; // string | number
}