aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-01-06 01:05:21 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-01-06 01:05:57 +0200
commit89bac537165bf262594cca343cb45e16a2167145 (patch)
treef72a80f1624b12fa3b27c6dc6feedc3e06594e20 /src/ast.c
parentaec19e55ca32f68536a550f100d3f058b8a93c02 (diff)
downloadfwd-89bac537165bf262594cca343cb45e16a2167145.tar.gz
fwd-89bac537165bf262594cca343cb45e16a2167145.zip
implement move checking furthermvcheck
+ Enough that examples still compile, but missing references etc.
Diffstat (limited to 'src/ast.c')
-rw-r--r--src/ast.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/ast.c b/src/ast.c
index 81fa0b3..acada6f 100644
--- a/src/ast.c
+++ b/src/ast.c
@@ -296,6 +296,8 @@ struct ast *clone_ast(struct ast *n)
if (n->a3)
new->a3 = clone_ast_list(n->a3);
+ /** @todo rebuild opt group? */
+
return new;
}
@@ -331,6 +333,7 @@ struct type *clone_type(struct type *type)
if (type->t0 && !(new->t0 = clone_type_list(type->t0)))
return NULL;
+ new->group = type->group;
return new;
}
@@ -542,7 +545,10 @@ void fix_closures(struct ast *root)
}
struct ast *next = root->n;
- struct ast *block = gen_block(next, next->loc);
+ if (!next)
+ next = gen_empty(root->loc);
+
+ struct ast *block = gen_block(next, root->loc);
closure_body(arg) = block;
root->n = NULL;
root = next;
@@ -648,3 +654,9 @@ const char *ast_str(enum ast_kind k)
return "UNKNOWN";
}
+
+void opt_group(struct ast *a, struct ast *b)
+{
+ a->or = b;
+ b->ol = a;
+}