From 8f4bfab76fd7f5b7e55882159f7d6dc67651bf6c Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 26 Sep 2025 01:41:21 -0700 Subject: [PATCH] Test: Object with multi props + sum --- test/src/object_multi.hi | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/src/object_multi.hi diff --git a/test/src/object_multi.hi b/test/src/object_multi.hi new file mode 100644 index 0000000..bb15344 --- /dev/null +++ b/test/src/object_multi.hi @@ -0,0 +1,7 @@ +// Multi-property object should emit commas correctly +cfg: { + a: 1 + b: 2 +} + +_(cfg.a + cfg.b)