From 004b9168ce82c6ed8f49ea26c6afd2a5814fe2c1 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Sat, 25 Jan 2025 17:26:47 -0800 Subject: [PATCH] Add local...in syntax --- docs/syntax-multiple-index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/syntax-multiple-index.md b/docs/syntax-multiple-index.md index 32d0af1..3972cec 100644 --- a/docs/syntax-multiple-index.md +++ b/docs/syntax-multiple-index.md @@ -292,6 +292,16 @@ local useState = require("@react")[local] There is nothing functionally wrong with this, so the proposal doesn't discard this possibility, but it was deemed to have a slightly odd shape compared to other Luau constructs. It could also have an adverse effect on line length. +A `local...in` syntax was considered to make the relationship between identifiers and the indexing operation clearer. + +```Lua +local amelia, bethany, carol in nicknames +amelia, bethany, carol in nicknames +``` + +This was tacitly discarded for now over concerns that the reassignment doesn't seem obvious, and may not make intuitive sense when considered together with `for..in` syntax. + + ### Implicit key renaming Renaming identifiers was considered with implicit keys, and should be possible with full backwards compatibility, and support for arbitrary expressions.