From f6c14577c67ea0d8006ac684e0ef783eabdd01d0 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 29 Jan 2025 11:02:37 -0800 Subject: [PATCH] Show desugaring for nested structure --- docs/syntax-structure-matching.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 1ca2b0c..104f288 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -180,7 +180,13 @@ No `=` is used, as this is not an assigning operation. {{ .foo { .bar = myBar } }} ``` -This desugars to: +This desugars once to: + +```Lua +{ [1] { ["foo"] { ["bar"] = myBar } } } +``` + +Then desugars again to: ```Lua local myBar = data[1]["foo"]["bar"]