Notable bug fixes:
- Fixed #9448
- Fixed a crash in pattern matching. (example)
- Refining a union by
instanceofno longer leaksanyfrom members that cannot match the guard (e.g.Foo<string> | Bar<number>refined byinstanceof Foonow yieldsFoo<string>instead ofFoo<string> | Foo<any>). This may surface real errors that were previously masked.