aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/parse.c b/src/parse.c
index 9a8af45..f6e047d 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -120,35 +120,3 @@ void free_bloc(struct bloc_parsed *bloc)
free(bloc->entries);
free(bloc);
}
-
-static struct term *rec_bloc(struct term *term, struct bloc_parsed *bloc)
-{
- switch (term->type) {
- case ABS:
- rec_bloc(term->u.abs.term, bloc);
- break;
- case APP:
- rec_bloc(term->u.app.lhs, bloc);
- rec_bloc(term->u.app.rhs, bloc);
- break;
- case VAR:
- break;
- case REF:
- if (term->u.ref.index >= bloc->length)
- fatal("invalid entry reference\n");
- memcpy(term,
- bloc->entries[bloc->length - term->u.ref.index - 1],
- sizeof(*term));
- break;
- default:
- fatal("invalid type %d\n", term->type);
- return 0;
- }
- return term;
-}
-
-struct term *from_bloc(struct bloc_parsed *bloc)
-{
- struct term *last = bloc->entries[bloc->length - 1];
- return rec_bloc(last, bloc);
-}