Skip to content

v0.322.0

Latest

Choose a tag to compare

@SamChou19815 SamChou19815 released this 08 Jul 18:10

Notable bug fixes:

  • Fixed #9448
  • Fixed a crash in pattern matching. (example)
  • Refining a union by instanceof no longer leaks any from members that cannot match the guard (e.g. Foo<string> | Bar<number> refined by instanceof Foo now yields Foo<string> instead of Foo<string> | Foo<any>). This may surface real errors that were previously masked.