aboutsummaryrefslogtreecommitdiff
path: root/src/compile/functions.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-24 16:21:16 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-24 16:21:16 -0400
commit5e82b074667627d1e6f44247396bae80f1c02fff (patch)
tree4c23178f6ea9e400507f6345b0b58a7ce54ab0aa /src/compile/functions.h
parentbd312d20901b968e0603359e8cd01276d114031a (diff)
Move function logic into functions files
Diffstat (limited to 'src/compile/functions.h')
-rw-r--r--src/compile/functions.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compile/functions.h b/src/compile/functions.h
index fdab495f..f7edd2aa 100644
--- a/src/compile/functions.h
+++ b/src/compile/functions.h
@@ -5,3 +5,5 @@
Text_t compile_function_call(env_t *env, ast_t *ast);
Text_t compile_arguments(env_t *env, ast_t *call_ast, arg_t *spec_args, arg_ast_t *call_args);
+Text_t compile_lambda(env_t *env, ast_t *ast);
+Table_t get_closed_vars(env_t *env, arg_ast_t *args, ast_t *block);