diff options
author | Alon Zakai <azakai@google.com> | 2022-07-12 12:41:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-12 12:41:58 -0700 |
commit | 65875f3fdbf09c46aa63f54337662d404e4f1c40 (patch) | |
tree | 9af8ac774845862fba89635bbebdeafd1870af58 /src/wasm2js.h | |
parent | f6a2a71a8b7ec52e3e4a9b7fdb4d2231a0129149 (diff) | |
download | binaryen-65875f3fdbf09c46aa63f54337662d404e4f1c40.tar.gz binaryen-65875f3fdbf09c46aa63f54337662d404e4f1c40.tar.bz2 binaryen-65875f3fdbf09c46aa63f54337662d404e4f1c40.zip |
[Strings] string.as (#4797)
Diffstat (limited to 'src/wasm2js.h')
-rw-r--r-- | src/wasm2js.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wasm2js.h b/src/wasm2js.h index f8179379d..ba6832540 100644 --- a/src/wasm2js.h +++ b/src/wasm2js.h @@ -2327,6 +2327,10 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m, unimplemented(curr); WASM_UNREACHABLE("unimp"); } + Ref visitStringAs(StringAs* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } Ref visitRefAs(RefAs* curr) { unimplemented(curr); WASM_UNREACHABLE("unimp"); |