blob: 8b70a0653704c456310a271ff77aaa32b826019b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef EVAL_H
#define EVAL_H
#include "parser.h"
#include "hashtbl.h"
typedef struct eval *eval_t;
// struct symdata {
// enum symbol_type {
// SYMBOL_VALUE,
// SYMBOL_FUNC,
// SYMBOL_FUNC_BUILTIN
// } type;
//
// union {
// value_t value;
// ast_t func;
// builtin_func_t builtin;
// };
// };
//
// struct symtbl {
// hashtbl_t table;
// struct symtbl *parent;
// };
struct eval {
// struct symtbl root;
// struct symtbl *cur;
// ...
};
// TODO: add options for the evaluation
eval_t eval_create();
void eval_destroy(eval_t eval);
int eval_ast(eval_t eval, ast_t *ast);
#endif
|