mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 02:50:59 +01:00
Show desugaring for nested structure
This commit is contained in:
parent
2cc95ab374
commit
f6c14577c6
1 changed files with 7 additions and 1 deletions
|
@ -180,7 +180,13 @@ No `=` is used, as this is not an assigning operation.
|
|||
{{ .foo { .bar = myBar } }}
|
||||
```
|
||||
|
||||
This desugars to:
|
||||
This desugars once to:
|
||||
|
||||
```Lua
|
||||
{ [1] { ["foo"] { ["bar"] = myBar } } }
|
||||
```
|
||||
|
||||
Then desugars again to:
|
||||
|
||||
```Lua
|
||||
local myBar = data[1]["foo"]["bar"]
|
||||
|
|
Loading…
Add table
Reference in a new issue