mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 02:50:59 +01:00
Simplify nested structure example
This commit is contained in:
parent
0dccd1b009
commit
43fc1a2463
1 changed files with 3 additions and 3 deletions
|
@ -195,19 +195,19 @@ No `=` is used, as this is not an assigning operation.
|
|||
*Open question: should we? or perhaps a different delimiter for visiting without binding? Discuss in comments.*
|
||||
|
||||
```Lua
|
||||
{ unpack { .foo { .bar } }, { .baz } }
|
||||
{ .foo { .bar } }
|
||||
```
|
||||
|
||||
This desugars once to:
|
||||
|
||||
```Lua
|
||||
{ [1] { ["foo"] { ["bar"] = bar } }, [2] { ["baz"] = baz } }
|
||||
{ ["foo"] { ["bar"] = bar } }
|
||||
```
|
||||
|
||||
Then desugars again to:
|
||||
|
||||
```Lua
|
||||
local bar, baz = data[1]["foo"]["bar"], data[1]["foo"]["baz"]
|
||||
local bar, baz = data["foo"]["bar"]
|
||||
```
|
||||
|
||||
## Alternatives
|
||||
|
|
Loading…
Add table
Reference in a new issue