Show desugaring for nested structure

This commit is contained in:
Daniel P H Fox (Roblox) 2025-01-29 11:02:37 -08:00 committed by GitHub
parent 2cc95ab374
commit f6c14577c6
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -180,7 +180,13 @@ No `=` is used, as this is not an assigning operation.
{{ .foo { .bar = myBar } }} {{ .foo { .bar = myBar } }}
``` ```
This desugars to: This desugars once to:
```Lua
{ [1] { ["foo"] { ["bar"] = myBar } } }
```
Then desugars again to:
```Lua ```Lua
local myBar = data[1]["foo"]["bar"] local myBar = data[1]["foo"]["bar"]