mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 11:00:58 +01:00
Fully qualified paths
This commit is contained in:
parent
a85808cfea
commit
edc415d823
1 changed files with 34 additions and 8 deletions
|
@ -149,26 +149,52 @@ foo, bar = data["foo"], data["bar"]
|
||||||
|
|
||||||
#### 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 unpacking and dot keys.
|
Keys can be chained together to match values in nested tables.
|
||||||
|
|
||||||
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.*
|
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
{ .foo { .bar } }
|
{ .foo.bar }
|
||||||
```
|
```
|
||||||
|
|
||||||
This desugars once to:
|
This desugars once to:
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
{ ["foo"] { bar = ["bar"] } }
|
{ bar = .foo.bar }
|
||||||
|
```
|
||||||
|
|
||||||
|
Then desugars twice to:
|
||||||
|
|
||||||
|
```Lua
|
||||||
|
{ bar = ["foo"]["bar"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
Then desugars again to:
|
Then desugars again to:
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
local 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
|
||||||
|
|
Loading…
Add table
Reference in a new issue