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
|
# Configure analysis via .luaurc
|
||||||
|
|
||||||
|
**Status**: Implemented
|
||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
|
|
||||||
Introduces a way to configure type checker and linter using JSON-like .luaurc files
|
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
|
> Note: this RFC was adapted from an internal proposal that predates RFC process
|
||||||
|
|
||||||
|
**Status**: Implemented
|
||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
|
|
||||||
Add `table.freeze` which allows to make a table read-only in a shallow way.
|
Add `table.freeze` which allows to make a table read-only in a shallow way.
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
# Generic functions
|
# Generic functions
|
||||||
|
|
||||||
|
**Status**: Implemented
|
||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
|
|
||||||
Extend the syntax and semantics of functions to support explicit generic functions, which can bind type parameters as well as data parameters.
|
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
|
# 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
|
## Motivation
|
||||||
|
|
||||||
Luau supports recursive type aliases, but with an important restriction:
|
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
|
> Note: this RFC was adapted from an internal proposal that predates RFC process
|
||||||
|
|
||||||
|
**Status**: Implemented
|
||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
|
|
||||||
Introduce a form of ternary conditional using `if cond then value else alternative` syntax.
|
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
|
# Unsealed table assignment creates an optional property
|
||||||
|
|
||||||
|
## Summary
|
||||||
|
|
||||||
In Luau, tables have a state, which can, among others, be "unsealed".
|
In Luau, tables have a state, which can, among others, be "unsealed".
|
||||||
An unsealed table is one that we are still constructing. Currently
|
An unsealed table is one that we are still constructing. Currently
|
||||||
assigning a table literal to an unsealed table does not introduce new
|
assigning a table literal to an unsealed table does not introduce new
|
||||||
|
@ -53,4 +55,4 @@ and so needs access to an allocator.
|
||||||
## Alternatives
|
## Alternatives
|
||||||
|
|
||||||
Rather than introducing optional properties, we could introduce an indexer. For example we could infer the type of
|
Rather than introducing optional properties, we could introduce an indexer. For example we could infer the type of
|
||||||
`t` as `{ u: { [string]: number } }`.
|
`t` as `{ u: { [string]: number } }`.
|
||||||
|
|
Loading…
Add table
Reference in a new issue