codebased/include/scirpt/ast.h
2023-04-13 02:29:49 +02:00

29 lines
476 B
C

#ifndef SCIRPT_AST_H
#define SCIRPT_AST_H
#include <stdbool.h>
#include <stdint.h>
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