-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalue.h
48 lines (43 loc) · 767 Bytes
/
value.h
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
40
41
42
43
44
45
46
47
48
#ifndef VALUE_H
#define VALUE_H
typedef enum {
PTR_TYPE,
INT_TYPE,
DOUBLE_TYPE,
STR_TYPE,
CONS_TYPE,
BOOL_TYPE,
SYMBOL_TYPE,
OPEN_TYPE,
CLOSE_TYPE,
BINDING_TYPE,
NULL_TYPE,
VOID_TYPE,
CLOSURE_TYPE,
PRIMITIVE_TYPE
} valueType;
struct Value {
valueType type;
union {
void *p;
int i;
double d;
char *s;
struct ConsCell {
struct Value *car;
struct Value *cdr;
} c;
struct binding{
struct Value *key;
struct Value *val;
} b;
struct Closure{
struct Value *params;
struct Value *body;
struct Frame *frame;
} cl;
struct Value *(*pf)(struct Value*);
};
};
typedef struct Value Value;
#endif