From 465c544d4a593a135c86390d61385cfbd2f93dd5 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sun, 3 Mar 2019 14:54:07 +0100 Subject: Use setjmp, longjmp instead of return_if_error to improve performance --- src/ast.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ast.c') diff --git a/src/ast.c b/src/ast.c index 4b72f43..993cf95 100644 --- a/src/ast.c +++ b/src/ast.c @@ -48,4 +48,5 @@ void binop_init(Binop *self) { self->lhs = ast_none(); self->rhs = ast_none(); self->type = BINOP_ADD; + self->grouped = bool_false; } \ No newline at end of file -- cgit v1.2.3