mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 02:50:59 +01:00
Remove parentheses from nested structure matching
This commit is contained in:
parent
edc415d823
commit
97c355379c
1 changed files with 1 additions and 25 deletions
|
@ -173,30 +173,6 @@ Then desugars again to:
|
||||||
bar = data["foo"]["bar"]
|
bar = data["foo"]["bar"]
|
||||||
```
|
```
|
||||||
|
|
||||||
To avoid fully qualifying multiple paths, parentheses can be used to share a common prefix:
|
|
||||||
|
|
||||||
```Lua
|
|
||||||
{ .foo(.bar, myBaz = ["baz"]) }
|
|
||||||
```
|
|
||||||
|
|
||||||
This desugars once to:
|
|
||||||
|
|
||||||
```Lua
|
|
||||||
{ .foo.bar, myBaz = .foo["baz"] }
|
|
||||||
```
|
|
||||||
|
|
||||||
Then desugars twice to:
|
|
||||||
|
|
||||||
```Lua
|
|
||||||
{ foo = ["foo"]["bar"], myBaz = ["foo"]["baz"] }
|
|
||||||
```
|
|
||||||
|
|
||||||
Then desugars again to:
|
|
||||||
|
|
||||||
```Lua
|
|
||||||
local bar, myBaz = data["foo"]["bar"], data["foo"]["baz"]
|
|
||||||
```
|
|
||||||
|
|
||||||
## Alternatives
|
## Alternatives
|
||||||
|
|
||||||
### Unpack syntax
|
### Unpack syntax
|
||||||
|
|
Loading…
Add table
Reference in a new issue