Clarified parsing properties of tables in the presence of singleton types (#207)

This commit is contained in:
Alan Jeffrey 2021-11-16 14:48:01 -06:00 committed by GitHub
parent e7a443daa8
commit 59366ad7f8
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.