aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
authorMarvin Borner2023-06-07 15:54:59 +0200
committerMarvin Borner2023-06-07 15:54:59 +0200
commit1e728c2455fdc696e260f87d0d523a3de6d43a00 (patch)
treeb270fb80fb1fc6f1ad6256a288fc1417c0704899 /src/parse.c
parentec2be68120e48c75b0acd2bdfb5cc8d931c70cfd (diff)
Parenting is still needed
I was certainly dumb. This reverts commit ec2be68120e48c75b0acd2bdfb5cc8d931c70cfd.
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parse.c b/src/parse.c
index f4ec69c..e2d2498 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -26,6 +26,7 @@ static struct term_handle abs_blc(char **term, size_t depth)
map_set(map_all_terms(), res_term);
}
+ map_set(res_term->u.abs.term->parents, res_term);
return (struct term_handle){ .term = res_term, .hash = res };
}
@@ -48,6 +49,9 @@ static struct term_handle app_blc(char **term, size_t depth)
map_set(map_all_terms(), res_term);
}
+ map_set(res_term->u.app.lhs->parents, res_term);
+ map_set(res_term->u.app.rhs->parents, res_term);
+
return (struct term_handle){ .term = res_term, .hash = res };
}