From 5d4b4ef80d8dc427b0e2803d50e439f76f06e17a Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 4 Dec 2024 11:04:16 +0200 Subject: implement expression handling further + Add some notes about returning functions that I started thinking about as a result of the fib example --- include/fwd/ast.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/fwd/ast.h b/include/fwd/ast.h index 909137d..c124ac1 100644 --- a/include/fwd/ast.h +++ b/include/fwd/ast.h @@ -166,6 +166,7 @@ static inline bool is_binop(struct ast *x) static inline bool is_unop(struct ast *x) { switch (x->k) { + case AST_LNOT: case AST_NOT: case AST_NEG: return true; -- cgit v1.2.3