mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 11:00:58 +01:00
Update nested structure example
This commit is contained in:
parent
f068d831ed
commit
4efa1eefe9
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.*
|
*Open question: should we? or perhaps a different delimiter for visiting without binding? Discuss in comments.*
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
{ unpack { .foo { .bar = myBar } }}
|
{ unpack { .foo { .bar } } { .baz } }
|
||||||
```
|
```
|
||||||
|
|
||||||
This desugars once to:
|
This desugars once to:
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
{ [1] { ["foo"] { ["bar"] = myBar } } }
|
{ [1] { ["foo"] { ["bar"] = bar } } { ["baz"] = baz } }
|
||||||
```
|
```
|
||||||
|
|
||||||
Then desugars again to:
|
Then desugars again to:
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
local myBar = data[1]["foo"]["bar"]
|
local bar, baz = data[1]["foo"]["bar"], data[1]["foo"]["baz"]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Alternatives
|
## Alternatives
|
||||||
|
|
Loading…
Add table
Reference in a new issue