Skip to content

Type narrowing context is lost within closuresΒ #46118

Closed

Description

Bug Report

πŸ”Ž Search Terms

typescript union typed narrowing lost in closures
type narrowing closures

πŸ•— Version & Regression Information

Typescript versions 4.4.3 and still exists on Nightly 4.5.0-dev

⏯ Playground Link

Playground link with relevant code

πŸ’» Code

type MyUnion = { type: 'left', propertyExistsOnLeft: string } | { type: 'right', propertyExistsOnRight: string }

let x = {} as MyUnion;

switch (x.type) {
    case 'left':
        const y = x.propertyExistsOnLeft; //all good here ...
        console.log(() => x.propertyExistsOnLeft) //showing error "Property 'propertyExistsOnLeft' does not exist on type 'MyUnion'"
        break;
}

πŸ™ Actual behavior

Type narrowing is working as expected when following control flow, however when the variable is used inside a closures scope (arrow functions or normal functions) it reverts back to it's declared type losing all narrowing inferred from the containing scope.

πŸ™‚ Expected behavior

Type narrowing should continue to work inside the context of closures.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

    Labels

    DuplicateAn existing issue was already created

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions