summaryrefslogtreecommitdiff
path: root/src/wasm2js.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm2js.h')
-rw-r--r--src/wasm2js.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/wasm2js.h b/src/wasm2js.h
index e032ac26d..25c51f490 100644
--- a/src/wasm2js.h
+++ b/src/wasm2js.h
@@ -1872,6 +1872,22 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m,
unimplemented(curr);
WASM_UNREACHABLE();
}
+ Ref visitTry(Try* curr) {
+ unimplemented(curr);
+ WASM_UNREACHABLE();
+ }
+ Ref visitThrow(Throw* curr) {
+ unimplemented(curr);
+ WASM_UNREACHABLE();
+ }
+ Ref visitRethrow(Rethrow* curr) {
+ unimplemented(curr);
+ WASM_UNREACHABLE();
+ }
+ Ref visitBrOnExn(BrOnExn* curr) {
+ unimplemented(curr);
+ WASM_UNREACHABLE();
+ }
Ref visitPush(Push* curr) {
unimplemented(curr);
WASM_UNREACHABLE();