summaryrefslogtreecommitdiff
path: root/src/runner/runner.h
blob: f143cbcfd721daac526d0a85c13064a2d55426e1 (plain)
1
2
3
4
5
6
7
8
9
10
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);