summaryrefslogtreecommitdiff
path: root/src/type.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-06-13 12:11:23 -0400
committerAdrian Thurston <thurston@complang.org>2015-06-13 12:11:23 -0400
commit324f1fc08d2876f8084f226a54bb06e0e817a791 (patch)
tree51d7ee213f446b8aa4531192aca3cf66f84a4aa8 /src/type.h
parent61989e6087d38923b132d80892375d78f68e8c13 (diff)
downloadcolm-324f1fc08d2876f8084f226a54bb06e0e817a791.tar.gz
cleanup and simplification, generic elements and various
Diffstat (limited to 'src/type.h')
-rw-r--r--src/type.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/type.h b/src/type.h
index e9549ff7..cfd4612b 100644
--- a/src/type.h
+++ b/src/type.h
@@ -7,15 +7,17 @@
enum TYPE
{
- TYPE_NOTYPE = 0x00,
- TYPE_NIL = 0x01,
- TYPE_TREE = 0x02,
- TYPE_REF = 0x03,
- TYPE_ITER = 0x04,
- TYPE_STRUCT = 0x05,
- TYPE_GENERIC = 0x06,
- TYPE_INT = 0x07,
- TYPE_BOOL = 0x08,
+ TYPE_NOTYPE = 0x00,
+ TYPE_NIL = 0x01,
+ TYPE_TREE = 0x02,
+ TYPE_REF = 0x03,
+ TYPE_ITER = 0x04,
+ TYPE_STRUCT = 0x05,
+ TYPE_GENERIC = 0x06,
+ TYPE_INT = 0x07,
+ TYPE_BOOL = 0x08,
+ TYPE_LIST_PTRS = 0x09,
+ TYPE_MAP_PTRS = 0x0a,
};
#endif