diff options
Diffstat (limited to 'src/wasm2js.h')
-rw-r--r-- | src/wasm2js.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/wasm2js.h b/src/wasm2js.h index 013e56335..cb7bfd20d 100644 --- a/src/wasm2js.h +++ b/src/wasm2js.h @@ -2126,6 +2126,54 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m, unimplemented(curr); WASM_UNREACHABLE("unimp"); } + Ref visitRefTest(RefTest* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitRefCast(RefCast* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitBrOnCast(BrOnCast* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitRttCanon(RttCanon* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitRttSub(RttSub* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitStructNew(StructNew* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitStructGet(StructGet* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitStructSet(StructSet* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitArrayNew(ArrayNew* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitArrayGet(ArrayGet* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitArraySet(ArraySet* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitArrayLen(ArrayLen* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } private: Ref makePointer(Expression* ptr, Address offset) { |