29 lines
476 B
C
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
|