lang: replace stack-based parser with a recursive parser

This commit is contained in:
2026-04-06 18:25:43 +01:00
parent 3a549aa6df
commit b904813cef
77 changed files with 2984 additions and 6499 deletions
-2
View File
@@ -1,4 +1,3 @@
#include "ctx.h"
#include "node.h"
#include <fx/ds/string.h>
@@ -14,6 +13,5 @@ static void to_string(struct ivy_ast_node *node, fx_string *str)
struct ast_node_type ident_node_ops = {
.n_to_string = to_string,
.n_state_size = sizeof(struct parser_state),
.n_node_size = sizeof(struct ivy_ast_ident_node),
};