From 3bcb05b9b7100688ab166591b02bad1415ba7baf Mon Sep 17 00:00:00 2001 From: "Soni L." Date: Thu, 17 Oct 2024 14:46:34 -0300 Subject: type.h: Introduce ExnRef (#2489) --- src/interp/interp-util.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/interp/interp-util.cc b/src/interp/interp-util.cc index 5267f4ae..fcba2c7f 100644 --- a/src/interp/interp-util.cc +++ b/src/interp/interp-util.cc @@ -55,6 +55,9 @@ std::string TypedValueToString(const TypedValue& tv) { case Type::ExternRef: return StringPrintf("externref:%" PRIzd, tv.value.Get().index); + case Type::ExnRef: + return StringPrintf("exnref:%" PRIzd, tv.value.Get().index); + case Type::Reference: case Type::Func: case Type::Struct: -- cgit v1.2.3