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 1a424d0679
commit 44aa7dfb3f

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