Simplify nested structure example

This commit is contained in:
Daniel P H Fox (Roblox) 2025-01-29 11:01:09 -08:00 committed by GitHub
parent c2fadf8b80
commit bf1a719581
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -178,10 +178,8 @@ No `=` is used, as this is not an assigning operation.
An identifier and a structure matcher cannot be used at the same time. Exclusively one or the other may be on the right hand side. An identifier and a structure matcher cannot be used at the same time. Exclusively one or the other may be on the right hand side.
Illustrated with the most verbose syntax:
```Lua ```Lua
{ [1] { ["foo"] { ["bar"] = myBar } } } {{ .foo { .bar = myBar } }}
``` ```
This desugars to: This desugars to:
@ -190,19 +188,6 @@ This desugars to:
local myBar = data[1]["foo"]["bar"] local myBar = data[1]["foo"]["bar"]
``` ```
Dot keys and consecutive keys are compatible, and expected to be used for conciseness.
```Lua
{{ .foo { .bar = myBar } }}
```
This desugars to the same:
```Lua
local myBar = data[1]["foo"]["bar"]
```
## Alternatives ## Alternatives
### Indexing assignment ### Indexing assignment