Add remark that intersection types can mimic having getters/setters at different types

This commit is contained in:
ajeffrey@roblox.com 2021-09-20 15:45:02 -05:00
parent 8abad9a07d
commit 9686135d8e

View file

@ -116,6 +116,12 @@ the initial DM. This is unsound, but would support reparenting, and
any solution for reparenting is either going to require whole-program
analysis or have unsoundness.
### Separate getter and setters via intersection types
We could restrict the language to only allow a getter or a setter (but
not both) but this is not a restriction due to intersection types,
since we can mimic `{ get p: T, set p: U }` as `{ get p: T } & { set p: U }`.
### Why separate the getter from the setter?
Separate getters and setters were introduced to TypeScript in response