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)