diff options
author | Alon Zakai <azakai@google.com> | 2022-07-13 14:38:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 14:38:10 -0700 |
commit | 9671e95adbfcf0984a7e9800a7ea2ed33e1670ad (patch) | |
tree | d7273e64ed26429d18568439cdfb7b1fb6369645 /src/wasm2js.h | |
parent | 7b9c18b98c020f887aa9cb1750543751ebe5c530 (diff) | |
download | binaryen-9671e95adbfcf0984a7e9800a7ea2ed33e1670ad.tar.gz binaryen-9671e95adbfcf0984a7e9800a7ea2ed33e1670ad.tar.bz2 binaryen-9671e95adbfcf0984a7e9800a7ea2ed33e1670ad.zip |
[Strings] stringview access operations (#4798)
Diffstat (limited to 'src/wasm2js.h')
-rw-r--r-- | src/wasm2js.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/wasm2js.h b/src/wasm2js.h index ba6832540..7762f525a 100644 --- a/src/wasm2js.h +++ b/src/wasm2js.h @@ -2331,6 +2331,22 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m, unimplemented(curr); WASM_UNREACHABLE("unimp"); } + Ref visitStringWTF8Advance(StringWTF8Advance* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitStringWTF16Get(StringWTF16Get* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitStringIterNext(StringIterNext* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } + Ref visitStringIterMove(StringIterMove* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } Ref visitRefAs(RefAs* curr) { unimplemented(curr); WASM_UNREACHABLE("unimp"); |