mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 18:10:56 +01:00
Mark RFCs that were implemented as such.
This commit is contained in:
parent
f1ee825f69
commit
9adf1a8090
6 changed files with 17 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
# Configure analysis via .luaurc
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Introduces a way to configure type checker and linter using JSON-like .luaurc files
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
> Note: this RFC was adapted from an internal proposal that predates RFC process
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Add `table.freeze` which allows to make a table read-only in a shallow way.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# Generic functions
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Extend the syntax and semantics of functions to support explicit generic functions, which can bind type parameters as well as data parameters.
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# Recursive type restriction
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Restrict generic type aliases to only be able to refer to the exact same instantiation of the generic that's being declared.
|
||||
|
||||
## Motivation
|
||||
|
||||
Luau supports recursive type aliases, but with an important restriction:
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
> Note: this RFC was adapted from an internal proposal that predates RFC process
|
||||
|
||||
**Status**: Implemented
|
||||
|
||||
## Summary
|
||||
|
||||
Introduce a form of ternary conditional using `if cond then value else alternative` syntax.
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
# Unsealed table assignment creates an optional property
|
||||
|
||||
## Summary
|
||||
|
||||
In Luau, tables have a state, which can, among others, be "unsealed".
|
||||
An unsealed table is one that we are still constructing. Currently
|
||||
assigning a table literal to an unsealed table does not introduce new
|
||||
|
|
Loading…
Add table
Reference in a new issue