14 lines
192 B
C
14 lines
192 B
C
|
|
#ifndef STRUCT_ENVIRONMENT_VALUE
|
|
#define STRUCT_ENVIRONMENT_VALUE
|
|
|
|
struct environment_value
|
|
{
|
|
struct value* fallback;
|
|
|
|
struct gc* gc;
|
|
|
|
struct avl_tree_t* tree;
|
|
};
|
|
|
|
#endif
|