From 82901c0cf3d2b7abbcfa7e2063f8b57727574532 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 26 Sep 2025 01:41:26 -0700 Subject: [PATCH] Test: Nested object parsing --- test/src/nested_object.hi | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/src/nested_object.hi diff --git a/test/src/nested_object.hi b/test/src/nested_object.hi new file mode 100644 index 0000000..48133e9 --- /dev/null +++ b/test/src/nested_object.hi @@ -0,0 +1,9 @@ +// Nested object should parse recursively +cfg: { + inner: { + x: 2 + y: 3 + } +} + +_(cfg.inner.x + cfg.inner.y)