summaryrefslogtreecommitdiff
path: root/val.c
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-08-06 18:12:16 +0100
committerubq323 <ubq323@ubq323.website>2024-08-06 18:12:16 +0100
commit5b522325bdc0af283ca6d3ec7d71908858d91b33 (patch)
treee2944b3db088fbb4b48dac71365928c628ef30dd /val.c
parenta266b97829ebe698a4256890fdf1214e479fe1de (diff)
deastnodeify form compilers
Diffstat (limited to 'val.c')
-rw-r--r--val.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/val.c b/val.c
index 43e47d3..ed375ac 100644
--- a/val.c
+++ b/val.c
@@ -184,3 +184,10 @@ const char *typename_str(Val v) {
}
return "???";
}
+
+int val_type(Val v) {
+ if (IS_OBJ(v))
+ return AS_OBJ(v)->oty;
+ else
+ return v.ty;
+}