mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 19:11:00 +01:00
Simplify nested structure example
This commit is contained in:
parent
c2fadf8b80
commit
bf1a719581
1 changed files with 1 additions and 16 deletions
|
@ -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.
|
||||
|
||||
Illustrated with the most verbose syntax:
|
||||
|
||||
```Lua
|
||||
{ [1] { ["foo"] { ["bar"] = myBar } } }
|
||||
{{ .foo { .bar = myBar } }}
|
||||
```
|
||||
|
||||
This desugars to:
|
||||
|
@ -190,19 +188,6 @@ This desugars to:
|
|||
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
|
||||
|
||||
### Indexing assignment
|
||||
|
|
Loading…
Add table
Reference in a new issue