aboutsummaryrefslogtreecommitdiff
path: root/src/compiler.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-01-04 01:25:31 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-01-04 01:25:31 +0200
commitaec19e55ca32f68536a550f100d3f058b8a93c02 (patch)
treec876d205fa9867aca8b7bb8c072635e2cf876205 /src/compiler.c
parent718784ca20b8cb49aec438daecc846f273971793 (diff)
downloadfwd-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/compiler.c')
-rw-r--r--src/compiler.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler.c b/src/compiler.c
index d18e767..9f564d8 100644
--- a/src/compiler.c
+++ b/src/compiler.c
@@ -21,6 +21,7 @@
#include <fwd/debug.h>
#include <fwd/scope.h>
#include <fwd/lower.h>
+#include <fwd/move.h>
/**
* Read whole file into a buffer and return pointer to buffer.
@@ -112,6 +113,9 @@ static int process(struct scope **parent, const char *file)
if (analyze_root(scope, tree))
return -1;
+ if (mvcheck_root(tree))
+ return -1;
+
return 0;
}