preliminary work on the loop parsing

This commit is contained in:
Lorenzo Torres 2025-12-01 22:32:41 +01:00
parent 39c92585f1
commit eaebcd7bdd
4 changed files with 18 additions and 2 deletions

View file

@ -151,6 +151,11 @@ typedef struct _ast_node {
/* This should be an access. */
struct _ast_node *path;
} import;
struct {
struct _ast_node *parameters;
struct _ast_node *captures;
usize param_len;
} fr; // for
} expr;
} ast_node;