mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 18:30:54 +01:00
Clarified parsing properties of tables in the presence of singleton types (#207)
This commit is contained in:
parent
e7a443daa8
commit
59366ad7f8
1 changed files with 12 additions and 0 deletions
|
@ -48,6 +48,18 @@ type Animals = "Dog" | "Cat" | "Bird"
|
||||||
type TrueOrNil = true?
|
type TrueOrNil = true?
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Adding constant strings as type means that it is now legal to write
|
||||||
|
`{["foo"]:T}` as a table type. This should be parsed as a property,
|
||||||
|
not an indexer. For example:
|
||||||
|
```lua
|
||||||
|
type T = {
|
||||||
|
["foo"]: number,
|
||||||
|
["$$bar"]: string,
|
||||||
|
baz: boolean,
|
||||||
|
}
|
||||||
|
```
|
||||||
|
The table type `T` is a table with three properties and no indexer.
|
||||||
|
|
||||||
### Semantics
|
### Semantics
|
||||||
|
|
||||||
You are allowed to provide a constant value to the generic primitive type.
|
You are allowed to provide a constant value to the generic primitive type.
|
||||||
|
|
Loading…
Add table
Reference in a new issue