mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 02:50:59 +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
|
||||
|
||||
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.
|
||||
|
||||
*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
|
||||
{{ .foo { .bar = myBar } }}
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue