aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-08-11 19:33:23 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-08-11 19:34:23 +0300
commit3065334aec0f357c88eab144628a798db4a3e5ea (patch)
tree93e819215c6599103f28408c3b7afe8487b4685e /src/ast.c
parent0bee8234a52c9399544364e8d26b124cb487ce7c (diff)
downloadek-3065334aec0f357c88eab144628a798db4a3e5ea.tar.gz
ek-3065334aec0f357c88eab144628a798db4a3e5ea.zip
parse struct continuation
+ Similar in idea to impl in Rust
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 6b3b28d..d734252 100644
--- a/src/ast.c
+++ b/src/ast.c
@@ -244,6 +244,7 @@ void ast_dump(int depth, struct ast *n)
DUMP(AST_ALIAS_DEF);
DUMP(AST_TRAIT_DEF);
DUMP(AST_STRUCT_DEF);
+ DUMP(AST_STRUCT_CONT_DEF);
DUMP(AST_IF);
DUMP(AST_BLOCK);
DUMP(AST_IMPORT);