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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
=== tests/cases/compiler/controlFlowNullTypeAndLiteral.ts ===
// Repros from #23771
const myNull: null = null;
>myNull : Symbol(myNull, Decl(controlFlowNullTypeAndLiteral.ts, 2, 5))
const objWithValMaybeNull: { val: number | null } = { val: 1 };
>objWithValMaybeNull : Symbol(objWithValMaybeNull, Decl(controlFlowNullTypeAndLiteral.ts, 3, 5))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 53))
const addOne = function (num: number) {
>addOne : Symbol(addOne, Decl(controlFlowNullTypeAndLiteral.ts, 4, 5))
>num : Symbol(num, Decl(controlFlowNullTypeAndLiteral.ts, 4, 25))
return num + 1;
>num : Symbol(num, Decl(controlFlowNullTypeAndLiteral.ts, 4, 25))
}
if (objWithValMaybeNull.val !== null)
>objWithValMaybeNull.val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>objWithValMaybeNull : Symbol(objWithValMaybeNull, Decl(controlFlowNullTypeAndLiteral.ts, 3, 5))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
addOne(objWithValMaybeNull.val);
>addOne : Symbol(addOne, Decl(controlFlowNullTypeAndLiteral.ts, 4, 5))
>objWithValMaybeNull.val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>objWithValMaybeNull : Symbol(objWithValMaybeNull, Decl(controlFlowNullTypeAndLiteral.ts, 3, 5))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
if (objWithValMaybeNull.val !== myNull)
>objWithValMaybeNull.val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>objWithValMaybeNull : Symbol(objWithValMaybeNull, Decl(controlFlowNullTypeAndLiteral.ts, 3, 5))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>myNull : Symbol(myNull, Decl(controlFlowNullTypeAndLiteral.ts, 2, 5))
addOne(objWithValMaybeNull.val);
>addOne : Symbol(addOne, Decl(controlFlowNullTypeAndLiteral.ts, 4, 5))
>objWithValMaybeNull.val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>objWithValMaybeNull : Symbol(objWithValMaybeNull, Decl(controlFlowNullTypeAndLiteral.ts, 3, 5))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
if (objWithValMaybeNull.val === null)
>objWithValMaybeNull.val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>objWithValMaybeNull : Symbol(objWithValMaybeNull, Decl(controlFlowNullTypeAndLiteral.ts, 3, 5))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
addOne(objWithValMaybeNull.val); // Error
>addOne : Symbol(addOne, Decl(controlFlowNullTypeAndLiteral.ts, 4, 5))
>objWithValMaybeNull.val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>objWithValMaybeNull : Symbol(objWithValMaybeNull, Decl(controlFlowNullTypeAndLiteral.ts, 3, 5))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
if (objWithValMaybeNull.val === myNull)
>objWithValMaybeNull.val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>objWithValMaybeNull : Symbol(objWithValMaybeNull, Decl(controlFlowNullTypeAndLiteral.ts, 3, 5))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>myNull : Symbol(myNull, Decl(controlFlowNullTypeAndLiteral.ts, 2, 5))
addOne(objWithValMaybeNull.val); // Error
>addOne : Symbol(addOne, Decl(controlFlowNullTypeAndLiteral.ts, 4, 5))
>objWithValMaybeNull.val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
>objWithValMaybeNull : Symbol(objWithValMaybeNull, Decl(controlFlowNullTypeAndLiteral.ts, 3, 5))
>val : Symbol(val, Decl(controlFlowNullTypeAndLiteral.ts, 3, 28))
function f(x: number | null) {
>f : Symbol(f, Decl(controlFlowNullTypeAndLiteral.ts, 16, 36))
>x : Symbol(x, Decl(controlFlowNullTypeAndLiteral.ts, 18, 11))
if(x === myNull) {
>x : Symbol(x, Decl(controlFlowNullTypeAndLiteral.ts, 18, 11))
>myNull : Symbol(myNull, Decl(controlFlowNullTypeAndLiteral.ts, 2, 5))
const s: string = x; // Error
>s : Symbol(s, Decl(controlFlowNullTypeAndLiteral.ts, 20, 13))
>x : Symbol(x, Decl(controlFlowNullTypeAndLiteral.ts, 18, 11))
}
}
|