summaryrefslogtreecommitdiffstats
path: root/obj-types.h
diff options
context:
space:
mode:
Diffstat (limited to 'obj-types.h')
-rw-r--r--obj-types.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/obj-types.h b/obj-types.h
index 831dd897..a473060d 100644
--- a/obj-types.h
+++ b/obj-types.h
@@ -42,9 +42,13 @@ typedef enum { /* IDs of known object "types/classes" */
OBJctok = 6,
OBJctok_token = 7,
OBJvar = 8,
- OBJexpr = 9 /* remeber to UPDATE OBJ_NUM_IDS (below) if you add one! */
+ OBJvmop = 9,
+ OBJvmprg = 10,
+ OBJvm = 11,
+ OBJvmstk = 12,
+ OBJexpr = 13 /* remeber to UPDATE OBJ_NUM_IDS (below) if you add one! */
} objID_t;
-#define OBJ_NUM_IDS 10
+#define OBJ_NUM_IDS 14
typedef enum { /* IDs of base methods supported by all objects - used for jump table, so
* they must start at zero and be incremented. -- rgerahrds, 2008-01-04