summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-10-10 20:02:54 +0200
committerlemon <lsof@mailbox.org>2022-10-10 20:02:54 +0200
commitdbf6b2d3eedf1bdffb398254ef365a33aacb0e82 (patch)
tree13249ee53de965cfc699aaac6fa050d654957ed9
parent8c4e9f292dd3a353121c054dc7d3cdba1aa33b78 (diff)
missing typestr for upval
-rw-r--r--pez.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pez.c b/pez.c
index d7db3e7..3a37815 100644
--- a/pez.c
+++ b/pez.c
@@ -266,6 +266,7 @@ typestr(Val v)
case PEZ_TArray: return "array";
case PEZ_TFn: return "function";
case PEZ_TFnProto: return "(function prototype)";
+ case PEZ_TUpval: return "(upvalue)";
case PEZ_TDilambda: return "dilambda";
}
}