mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 11:00:58 +01:00
Update nested structure example
This commit is contained in:
parent
8931e7a455
commit
f068d831ed
1 changed files with 2 additions and 2 deletions
|
@ -188,14 +188,14 @@ It is invalid to specify an identifer without a key if `unpack` is not specified
|
||||||
|
|
||||||
#### Nested structure
|
#### Nested structure
|
||||||
|
|
||||||
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.
|
A structure matcher can be specified instead of an identifier, to match nested structure inside of that key. This is compatible with unpacking 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.*
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
{{ .foo { .bar = myBar } }}
|
{ unpack { .foo { .bar = myBar } }}
|
||||||
```
|
```
|
||||||
|
|
||||||
This desugars once to:
|
This desugars once to:
|
||||||
|
|
Loading…
Add table
Reference in a new issue