#pragma once #include "compiler/ast-tree.h" #include 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);