#ifndef SCIRPT_AST_H #define SCIRPT_AST_H #include #include typedef enum { ScirptAstExprTypeEof, ScirptAstExprTypeError, ScirptAstExprTypeId, ScirptAstExprTypeInt, ScirptAstExprTypeString, ScirptAstExprTypeBool, } ScirptAstExprType; typedef struct { ScirptAstExprType type; union { char* id_value; int64_t int_value; char* string_value; bool bool_value; }; } ScirptAstExpr; void scirpt_ast_expr_delete(ScirptAstExpr* expr); #endif