diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-07 21:14:11 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-02-07 21:14:11 +0330 |
commit | 6bd439f35c1184f04488ee4f0db21632e1301b51 (patch) | |
tree | 369766b11ef80c33dfca262deae0051e5343aaa5 /src/runner/runner.h | |
parent | b89bec88a56b81d3524ed082db9796ef3169b060 (diff) |
add plus
trying to add return
Diffstat (limited to 'src/runner/runner.h')
-rw-r--r-- | src/runner/runner.h | 11 |
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); |