WONKY



LOG | FILES | OVERVIEW


#ifndef WONKY_EVALUATION_H
#define WONKY_EVALUATION_H WONKY_EVALUATION_H
#include <ast.h>
#include <constant.h>
#include <lexer.h>
#include <program.h>
#include <common.h>


struct Constant* try_to_evaluate_expression(struct AST_Expression *expression,struct Translation_Data *translation_data);



long long int evaluate_const_expression_integer(struct AST *expression,struct Translation_Data *translation_data);


#endif