mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 11:00:58 +01:00
Simplify nested structure wording
This commit is contained in:
parent
bf1a719581
commit
2cc95ab374
1 changed files with 1 additions and 3 deletions
|
@ -170,14 +170,12 @@ foo, bar = data[1], data[2]
|
||||||
|
|
||||||
#### Nested structure
|
#### Nested structure
|
||||||
|
|
||||||
A structure matcher can be specified on the right hand side of a key, to match nested structure inside of that key.
|
A structure matcher can be specified instead of an identifier, to match nested structure inside of that key. This is compatible with consecutive keys and dot keys.
|
||||||
|
|
||||||
No `=` is used, as this is not an assigning operation.
|
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.*
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
{{ .foo { .bar = myBar } }}
|
{{ .foo { .bar = myBar } }}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue