From 9354bbd4ef2833622881d6b3b281277fb33a08b2 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Sat, 25 Jan 2025 17:29:25 -0800 Subject: [PATCH] Add comment on braces prefix --- docs/syntax-multiple-index.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/syntax-multiple-index.md b/docs/syntax-multiple-index.md index 3972cec..0abed4c 100644 --- a/docs/syntax-multiple-index.md +++ b/docs/syntax-multiple-index.md @@ -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. +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 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.