Mark sealed table subtyping RFC as implemented

This commit is contained in:
Arseny Kapoulkine 2022-03-24 13:10:30 -07:00 committed by GitHub
parent 2335b26ffc
commit ab64a097cd
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,9 @@
# Sealed table subtyping
**Status**: Implemented
## Summary
In Luau, tables have a state, which can, among others, be "sealed". A sealed table is one that we know the full shape of and cannot have new properties added to it. We would like to introduce subtyping for sealed tables, to allow users to express some subtyping relationships that they currently cannot.
## Motivation