Skip to content
New issue

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 can't parse optional object when assigned to a variable #36510

Closed
bnbarak opened this issue Jan 29, 2020 · 2 comments · Fixed by #44730
Closed

TypeScript can't parse optional object when assigned to a variable #36510

bnbarak opened this issue Jan 29, 2020 · 2 comments · Fixed by #44730
Labels
Duplicate An existing issue was already created

Comments

@bnbarak
Copy link

bnbarak commented Jan 29, 2020

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

Output
"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'.
}
Compiler Options
{
  "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

@nmain100
Copy link

Duplicate of #12184

@RyanCavanaugh RyanCavanaugh added the Duplicate An existing issue was already created label Feb 3, 2020
@typescript-bot
Copy link
Collaborator

This issue has been marked as a 'Duplicate' and has seen no recent activity. It has been automatically closed for house-keeping purposes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants