We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeScript Version: 3.7.5
Code
type A = { b?: { c?: number } } const a: A = { b: {c: 123} }; const isSafe = a && a.b && a.b.c // if (a && a.b && a.b.c) { // <= works if (isSafe) { // <= breaks console.log(a.b.c); // (TS 2532) Object is possibly 'undefined'. }
Expected behavior: TS should check if isSafe protects against undefined Actual behavior: TS doesn't check isSafe
isSafe
undefined
"use strict"; const a = { b: { c: 123 } }; const isSafe = a && a.b && a.b.c; // if (a && a.b && a.b.c) { // <= works if (isSafe) { // <= breaks console.log(a.b.c); // (TS 2532) Object is possibly 'undefined'. }
{ "compilerOptions": { "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, "strictBindCallApply": true, "noImplicitThis": true, "noImplicitReturns": true, "useDefineForClassFields": false, "alwaysStrict": true, "allowUnreachableCode": false, "allowUnusedLabels": false, "downlevelIteration": false, "noEmitHelpers": false, "noLib": false, "noStrictGenericChecks": false, "noUnusedLocals": false, "noUnusedParameters": false, "esModuleInterop": true, "preserveConstEnums": false, "removeComments": false, "skipLibCheck": false, "checkJs": false, "allowJs": false, "declaration": true, "experimentalDecorators": false, "emitDecoratorMetadata": false, "target": "ES2017", "module": "ESNext" } }
Playground Link: Provided
The text was updated successfully, but these errors were encountered:
Duplicate of #12184
Sorry, something went wrong.
This issue has been marked as a 'Duplicate' and has seen no recent activity. It has been automatically closed for house-keeping purposes.
Successfully merging a pull request may close this issue.
TypeScript Version: 3.7.5
Code
Expected behavior:
TS should check if
isSafe
protects againstundefined
Actual behavior:
TS doesn't check
isSafe
Output
Compiler Options
Playground Link: Provided
The text was updated successfully, but these errors were encountered: