blob: 2ff2ec2e1644e3d9ba429b945cc85a62dfe16c86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "compiler/ast-tree.h"
#include <stdint.h>
void runnerVariableSetValue(AstTreeVariable *variable,AstTree *value);
void runnerVariableSetValueWihtoutConstCheck(AstTreeVariable *variable,AstTree *value);
bool runAstTree(AstTreeRoot *root);
AstTree *runAstTreeFunction(AstTree *tree, AstTreeFunctionCallParam *arguments,
size_t arguments_size);
AstTree *runExpression(AstTree *expr, bool *shouldRet,bool isLeft);
|