mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 19:11:00 +01:00
Add comment on braces prefix
This commit is contained in:
parent
004b9168ce
commit
9354bbd4ef
1 changed files with 9 additions and 0 deletions
|
@ -146,6 +146,15 @@ It also does not provision for destructuring in the middle of an expression, whi
|
||||||
|
|
||||||
As such, this proposal does not pursue these design directions further, as the patterns it proposes struggle to be extrapolated and repeated elsewhere in Luau.
|
As such, this proposal does not pursue these design directions further, as the patterns it proposes struggle to be extrapolated and repeated elsewhere in Luau.
|
||||||
|
|
||||||
|
There is a hypothetical way forward for this idea if the braces have a prefix.
|
||||||
|
|
||||||
|
```Lua
|
||||||
|
-- One possible prefix
|
||||||
|
local rootUtils = require("../rootUtils")
|
||||||
|
local in { .homeDir, .workingDir } = rootUtils.rootFolders
|
||||||
|
in { .homeDir, .workingDir } = rootUtils.rootFolders
|
||||||
|
```
|
||||||
|
|
||||||
### Indexing assignment
|
### Indexing assignment
|
||||||
|
|
||||||
To address the problems around assignment support, a large amount of effort was poured into finding a way of moving the destructuring syntax into the middle of the assignment.
|
To address the problems around assignment support, a large amount of effort was poured into finding a way of moving the destructuring syntax into the middle of the assignment.
|
||||||
|
|
Loading…
Add table
Reference in a new issue