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

Narrowed union types loosened within closures #19683

Closed
myitcv opened this issue Nov 2, 2017 · 2 comments · Fixed by #56908
Closed

Narrowed union types loosened within closures #19683

myitcv opened this issue Nov 2, 2017 · 2 comments · Fixed by #56908
Labels
Duplicate An existing issue was already created

Comments

@myitcv
Copy link

myitcv commented Nov 2, 2017

This could be a dup of #14748; they seem related

TypeScript Version: 2.7.0-dev.20171102

Code

See in playground

class A { 
    name: string;
}
class B { 
    age: number;
}

let x: A | B;

if (x instanceof A) {
    console.log(x.name); // ok: x has type A

    setTimeout(() => {
        console.log(x.name); // ** COMPILE ERROR: x has type A | B here
    });
} else {
    console.log(x.age); // ok: x has type B here

    setTimeout(() => {
        console.log(x.age); // ** COMPILE ERROR: x has type A | B here
    });
}

Expected behavior:

This should compile.

Actual behavior:

It does not compile

@ghost
Copy link

ghost commented Nov 2, 2017

See #9998 and #11498.
In this case I think the behavior is correct; x is mutable so it could be different by the time the timeout is called. You can fix this by using const instead of let.

@ghost ghost added the Duplicate An existing issue was already created label Nov 2, 2017
@myitcv
Copy link
Author

myitcv commented Nov 3, 2017

In my.situation (and indeed the repro) it is not possible for x to have been mutated, but I can see that in general case that's harder to work out definitively. Thanks for the const tip.

@myitcv myitcv closed this as completed Nov 3, 2017
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant