Merge branch 'ast' into dev

This commit is contained in:
Matteo Flebus 2026-01-16 20:31:40 +01:00
commit 7ef87583da

View file

@ -10,7 +10,7 @@ bool ast_is_end(struct ast *node)
return node->type == AST_END; return node->type == AST_END;
} }
struct ast *ast_create_end(end) struct ast *ast_create_end(void)
{ {
return ast_create(AST_END, NULL); return ast_create(AST_END, NULL);
} }