summaryrefslogtreecommitdiff
path: root/val.h
diff options
context:
space:
mode:
Diffstat (limited to 'val.h')
-rw-r--r--val.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/val.h b/val.h
index aa68d05..097c06a 100644
--- a/val.h
+++ b/val.h
@@ -36,10 +36,12 @@ const char *typename_str(Val v);
bool is_truthy(Val v);
bool val_equal(Val a, Val b);
+// ValTy or ObjTy
+int val_type(Val v);
typedef enum {
- OTY_STRING,
+ OTY_STRING = 100,
OTY_FUNC,
OTY_ARR,
} ObjTy;