Remove parentheses from nested structure matching

This commit is contained in:
Daniel P H Fox (Roblox) 2025-03-03 10:54:29 -08:00 committed by GitHub
parent edc415d823
commit 97c355379c
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -173,30 +173,6 @@ Then desugars again to:
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
### Unpack syntax