diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-04 11:04:16 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-12-04 11:04:16 +0200 |
commit | 5d4b4ef80d8dc427b0e2803d50e439f76f06e17a (patch) | |
tree | a5869136c1e5e869d8e232927e06f27422f31234 /include | |
parent | 2253da61e9b3dd5408bed182ea08e5270156c17e (diff) | |
download | fwd-5d4b4ef80d8dc427b0e2803d50e439f76f06e17a.tar.gz fwd-5d4b4ef80d8dc427b0e2803d50e439f76f06e17a.zip |
implement expression handling further
+ Add some notes about returning functions that I started thinking about
as a result of the fib example
Diffstat (limited to 'include')
-rw-r--r-- | include/fwd/ast.h | 1 |
1 files changed, 1 insertions, 0 deletions
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; |