diff options
author | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2025-05-23 11:25:29 +0200 |
---|---|---|
committer | Flavian Kaufmann <flavian@flaviankaufmann.ch> | 2025-05-23 11:25:29 +0200 |
commit | de59dbd1773dff06051b7b604977bcb2803ada4f (patch) | |
tree | 60be4de19aa7be4d4d99136c2bfbb824edfa2d90 /include/interpreter.h | |
parent | 987a7c553701251d48b11a2243892ecd74ce6c4d (diff) | |
download | imp-de59dbd1773dff06051b7b604977bcb2803ada4f.tar.gz imp-de59dbd1773dff06051b7b604977bcb2803ada4f.zip |
[cleanup] ast
Diffstat (limited to 'include/interpreter.h')
-rw-r--r-- | include/interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/interpreter.h b/include/interpreter.h index 09f1e18..5eff23f 100644 --- a/include/interpreter.h +++ b/include/interpreter.h @@ -16,7 +16,7 @@ void context_set_var(context_t context, const char *name, int value); void context_print_var_table(context_t context); void context_print_proc_table(context_t context); -int interp_ast(context_t context, ASTNode *node); +int interp_ast(context_t context, IMP_ASTNode *node); int interp_file (context_t context, const char *path); int interp_str (context_t context, const char *str); |