aboutsummaryrefslogtreecommitdiff
path: root/src/eval.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.ts')
-rw-r--r--src/eval.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/eval.ts b/src/eval.ts
index 26b3df0..e421d7a 100644
--- a/src/eval.ts
+++ b/src/eval.ts
@@ -245,7 +245,9 @@ const getFunctions = (
return EvalValue.Void()
},
- _: () => Promise.reject(new Error('not supposed to be here')),
+ func: async () => EvalValue.Lazy(args),
+
+ _: () => Promise.reject(new Error(`Not implemented: ${name}`)),
})
}