summaryrefslogtreecommitdiff
path: root/src/runner/runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runner/runner.h')
-rw-r--r--src/runner/runner.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/runner/runner.h b/src/runner/runner.h
new file mode 100644
index 0000000..f143cbc
--- /dev/null
+++ b/src/runner/runner.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "compiler/ast-tree.h"
+#include <stdint.h>
+
+bool runAstTree(AstTreeRoot *root);
+
+AstTree *runAstTreeFunction(AstTreeFunction *function);
+
+AstTree *calcAstTreeValue(AstTree *tree);
+AstTree *deepCopyAstTree(AstTree *tree);