mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 11:00:58 +01:00
Specify type error behaviour
This commit is contained in:
parent
4d665f39ba
commit
0d205d42a0
1 changed files with 4 additions and 4 deletions
|
@ -166,22 +166,22 @@ Then desugars again to:
|
||||||
foo, bar = data[1], data[2]
|
foo, bar = data[1], data[2]
|
||||||
```
|
```
|
||||||
|
|
||||||
`unpack` skips dot keys and explicitly written keys:
|
`unpack` skips dot keys and explicitly written keys. If an explicit key collides with an implicit key, this is a type error.
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
{ unpack foo, [10] = bar, baz, .garb }
|
{ unpack foo, [true] = bar, baz, .garb }
|
||||||
```
|
```
|
||||||
|
|
||||||
This desugars once to:
|
This desugars once to:
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
{ [1] = foo, [10] = bar, [2] = baz, ["garb"] = garb }
|
{ [1] = foo, [true] = bar, [2] = baz, ["garb"] = garb }
|
||||||
```
|
```
|
||||||
|
|
||||||
Then desugars again to:
|
Then desugars again to:
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
foo, bar, baz, garb = data[1], data[10], data[2], data["garb"]
|
foo, bar, baz, garb = data[1], data[true], data[2], data["garb"]
|
||||||
```
|
```
|
||||||
|
|
||||||
It is invalid to specify an identifer without a key if `unpack` is not specified, for disambiguity with other languages.
|
It is invalid to specify an identifer without a key if `unpack` is not specified, for disambiguity with other languages.
|
||||||
|
|
Loading…
Add table
Reference in a new issue