aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-17 02:12:02 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-17 02:12:02 +0200
commit78bf3e039d77e3eb0d5e394273adb69b2b70a76d (patch)
tree0ed6f2058e348dbd18b0baa9c4ee442206191096 /src/ast.c
parent2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c (diff)
downloadfwd-78bf3e039d77e3eb0d5e394273adb69b2b70a76d.tar.gz
fwd-78bf3e039d77e3eb0d5e394273adb69b2b70a76d.zip
detect leaks
Diffstat (limited to 'src/ast.c')
-rw-r--r--src/ast.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/ast.c b/src/ast.c
index 08178f7..f491b55 100644
--- a/src/ast.c
+++ b/src/ast.c
@@ -201,6 +201,10 @@ void ast_dump(int depth, struct ast *n)
switch (n->k) {
DUMP(AST_CLOSURE);
DUMP(AST_IF);
+ DUMP(AST_NIL);
+ DUMP(AST_OWN);
+ DUMP(AST_ERR_BRANCH);
+ DUMP(AST_ERROR);
DUMP(AST_LET);
DUMP(AST_INIT);
DUMP(AST_CALL);
@@ -558,7 +562,7 @@ void fix_closures(struct ast *root)
assert(next);
- struct ast *block = gen_block(next, root->loc);
+ struct ast *block = gen_block(next, NULL, root->loc);
closure_body(arg) = block;
root->n = NULL;
root = next;
@@ -627,6 +631,10 @@ const char *ast_str(enum ast_kind k)
switch (k) {
CASE(AST_CLOSURE);
CASE(AST_IF);
+ CASE(AST_NIL);
+ CASE(AST_OWN);
+ CASE(AST_ERR_BRANCH);
+ CASE(AST_ERROR);
CASE(AST_LET);
CASE(AST_INIT);
CASE(AST_CALL);