diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-04 01:25:31 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-01-04 01:25:31 +0200 |
commit | aec19e55ca32f68536a550f100d3f058b8a93c02 (patch) | |
tree | c876d205fa9867aca8b7bb8c072635e2cf876205 /src/analyze.c | |
parent | 718784ca20b8cb49aec438daecc846f273971793 (diff) | |
download | fwd-aec19e55ca32f68536a550f100d3f058b8a93c02.tar.gz fwd-aec19e55ca32f68536a550f100d3f058b8a93c02.zip |
initial move checking
+ Missing implementations for most things, but it already highlights
an oversight in my initial plan, namely that currently, a function
might call multiple of its closures, meaning that a closure wouldn't
be allowed to move a value. I'm debating whether to check that only
one closure from a parameter list is called at a time or if I should
do what Hylo does and add in some kind of 'subscript' that's like a
function but has slightly different rules?
Diffstat (limited to 'src/analyze.c')
-rw-r--r-- | src/analyze.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze.c b/src/analyze.c index 37b2e65..077e7d8 100644 --- a/src/analyze.c +++ b/src/analyze.c @@ -418,7 +418,7 @@ static int analyze(struct state *state, struct scope *scope, struct ast *node) case AST_CONST_STR: ret = analyze_str (state, scope, node); break; default: - internal_error("missing ast analysis"); + internal_error("missing ast analysis for %s", ast_str(node->k)); return -1; } |