From 84fa86c3732e47331522fcc8b58092f605069116 Mon Sep 17 00:00:00 2001 From: cozis Date: Wed, 9 Mar 2022 12:34:20 +0100 Subject: [PATCH] fixed bug introduced by the last couple of commits --- src/compiler/parse.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/compiler/parse.c b/src/compiler/parse.c index f62ea21..e36a0e5 100644 --- a/src/compiler/parse.c +++ b/src/compiler/parse.c @@ -49,7 +49,7 @@ typedef enum { TGRT = '>', TASS = '=', - + TLBRK = '(', TRBRK = ')', TLSBRK = '[', @@ -558,7 +558,6 @@ static Node *parse_statement(Context *ctx) switch(current(ctx)) { default: - assert(0); break; case '(':