#ifndef SK_VALUE_H #define SK_VALUE_H #include "commons.h" #include "node.h" #define TYPE_KIND(G) \ G(TYPE_INT) SK_ENUM_H(TypeKind, TYPE_KIND); union val { int integer; }; struct value { TypeKind type; union val val; int line; }; void value_init(struct value* self, TypeKind type, union val val, int line); void value_free(struct value* self); bool value_equals(struct value* self, struct value* rhs); void value_str(struct value* self, struct str* dest); #endif