aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-12-06 18:14:40 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2024-12-06 18:14:40 +0200
commite5fda1c96af409065fedbe032b0f7908d9f312ac (patch)
tree9558506a84f45c3b3e24c0cfd4ae5e43c973d04a /src/ast.c
parent471ef9b710f88765d871ab079f8485ba0268201d (diff)
downloadfwd-e5fda1c96af409065fedbe032b0f7908d9f312ac.tar.gz
fwd-e5fda1c96af409065fedbe032b0f7908d9f312ac.zip
add types to parser
+ No actual type checking is implemented as of yet, but with references and pointers I should be able to start playing around with checking move semantics and so on + Might at some point also look into type propagation for let, annoying to have to specify the same thing twice.
Diffstat (limited to 'src/ast.c')
-rw-r--r--src/ast.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ast.c b/src/ast.c
index 102dff5..4baad56 100644
--- a/src/ast.c
+++ b/src/ast.c
@@ -174,6 +174,7 @@ void ast_dump(int depth, struct ast *n)
#define DUMP(x) case x: dump(depth, #x); break;
switch (n->k) {
DUMP(AST_CLOSURE);
+ DUMP(AST_IF);
DUMP(AST_LET);
DUMP(AST_INIT);
DUMP(AST_CALL);