Prelude of builtin functions #7

Merged
defunkt merged 45 commits from prelude into main 2025-10-29 20:15:37 +00:00
Showing only changes of commit f25ec024c2 - Show all commits

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