-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
[nightly] [regression] Control flow analysis for destructured unions gets invalidated by later assignment #57011
Comments
This is a form of indirect narrowing, which requires the variable(s) involved to be |
The new behavior (the error caused by assignment to |
As the author of #56313 , I think that this one worked by accident in the past. Just like @fatcerberus mentioned - if this is supposed to work then I think it will take more than a super simple fix. Those parameters now are treated as mutable (since you reassigned some of them) so the fix would involve fixing this (TS playground): function test(
stuff: { other: unknown } & (
| { success: true; value: number }
| { success: false; value?: number }
),
): number {
let { other, success, value } = stuff;
if (success) {
return value;
}
// other = 4; // it should work with `let` with or without this line
return 4;
} I don't think there is a big appetite for fixing this and I stand by my PR - I think its impact is net positive even if it broke this case here. |
I can't disagree that the previous behavior only worked unintentionally, but Hyrum's law and all that. @Andarist I don't think your PR needs to reverted. I just think it's a good time to revisit the trade-offs in the pre-existing behavior, mostly in terms of explicability rather than correctness. While the explanations given make sense from the perspective of how the checker happens to be implemented, innocent-looking fragments of code like these are difficult to explain and off-putting to unsophisticated users.
|
@MichaelMitchell-at Years of exchanges like that happening are how we ultimately get PRs like #56908 so don't give up hope just yet π1 Footnotes
|
We now only narrow dependent destructured parameters when there are no assignments to any of those parameters. I agree with @Andarist here, analysis to determine that a particular parameter isn't depended upon by other parameters would be complex and of marginal value. So we'll call this a design limitation. |
π Search Terms
control flow assignment destructured discriminated union
π Version & Regression Information
β― Playground Link
https://tsplay.dev/mpzrgw
π» Code
π Actual behavior
Type error because
value
is not narrowed bysuccess
check.π Expected behavior
No type error because narrowing is correctly applied
Additional information about the issue
Note that this seems to be an extended version of a bug that I discovered has existed since TS 4.6 when control flow analysis for destructured unions was introduced!
The text was updated successfully, but these errors were encountered: