further activate dotget

This commit is contained in:
Chris Wanstrath 2025-10-28 22:18:46 -07:00
parent 6d19896d1a
commit f25ec024c2

View File

@ -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]]
}