From f25ec024c2cbb11f236a3d6e1566c262a4a69c62 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 28 Oct 2025 22:18:46 -0700 Subject: [PATCH] further activate dotget --- src/compiler/compiler.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/compiler/compiler.ts b/src/compiler/compiler.ts index bbedc09..4438020 100644 --- a/src/compiler/compiler.ts +++ b/src/compiler/compiler.ts @@ -265,6 +265,9 @@ export class Compiler { } case terms.FunctionCallOrIdentifier: { + if (node.firstChild?.name === 'DotGet') + return this.#compileNode(node.firstChild, input) + return [['TRY_CALL', value]] }