Unsafe Map overload spoils direct property access on parenthesized assignment expression #61506
Labels
Help Wanted
You can do this
Possible Improvement
The current behavior isn't wrong, but it's possible to see that it might be better in some cases
Milestone
π Search Terms
map overload any unknown unsafe weakmap set binary assignment lazy init
π Version & Regression Information
β― Playground Link
https://www.typescriptlang.org/play/?ts=5.9.0-dev.20250326#code/DYUwLgBAxghlAWIBcECyMAOAeAzmATgJYB2A5gDQQD2ARgFYhRgB8EAPhAK7EAmIAZiRA8A3ACgx-bk0JViEMCDwBGABQBrEAE8UeImQCUEAN5iI0OXgj4lnYJAC8EVbAQgIAfg9PiIAO5omKoGBgB0pOAa2gbi5gD0cebmAHoeZtbgnPjyNjh2YOIAvhJSxDJyCkpgAExROhB6JKRGpuauiJ7eEL4B6BjBsRbEVrn5EE7tIOGRmlox6QlJEKnpNmBZObb2RWJAA
π» Code
π Actual behavior
First
result
gets spoiled asany
π Expected behavior
I'd expect both
result
s to beobject | undefined
Additional information about the issue
This bug reports an issue related to
Map
but, tbf, it's not unique toMap
and a more general solution would have to be found to properly fix this. The problem is howcheckBinaryLikeExpressionWorker
create a union of left and right types here - without taking into consideration that the assignment target might already overlap with the right type. That union type gets reduced withUnionReduction.Subtype
and.get
gets read from it - instead of the assigned to reference on the left side.The text was updated successfully, but these errors were encountered: