diff options
Diffstat (limited to 'js/src/wasm/WasmDump.cpp')
-rw-r--r-- | js/src/wasm/WasmDump.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/src/wasm/WasmDump.cpp b/js/src/wasm/WasmDump.cpp index 2af9ebece2..f92125077a 100644 --- a/js/src/wasm/WasmDump.cpp +++ b/js/src/wasm/WasmDump.cpp @@ -78,6 +78,9 @@ void wasm::Dump(RefType type, GenericPrinter& out) { case RefType::NoFunc: literal = "nullfuncref"; break; + case RefType::NoExn: + literal = "nullexn"; + break; case RefType::NoExtern: literal = "nullexternref"; break; @@ -122,6 +125,9 @@ void wasm::Dump(RefType type, GenericPrinter& out) { case RefType::NoFunc: heapType = "nofunc"; break; + case RefType::NoExn: + heapType = "noexn"; + break; case RefType::NoExtern: heapType = "noextern"; break; |