diff options
author | Alon Zakai <azakai@google.com> | 2022-07-08 08:32:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-08 08:32:59 -0700 |
commit | b88bedb16c8177442916eb64ebb4886206aeccf0 (patch) | |
tree | d2c037ce0b59b9a1362c349a61dc3b31a3bfe27e /src/wasm2js.h | |
parent | 19a437500a4c30f48355722653a01a8c44ff6bec (diff) | |
download | binaryen-b88bedb16c8177442916eb64ebb4886206aeccf0.tar.gz binaryen-b88bedb16c8177442916eb64ebb4886206aeccf0.tar.bz2 binaryen-b88bedb16c8177442916eb64ebb4886206aeccf0.zip |
[Strings] string.concat (#4777)
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 6042e2f5b..c6b5cbb6c 100644 --- a/src/wasm2js.h +++ b/src/wasm2js.h @@ -2319,6 +2319,10 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m, unimplemented(curr); WASM_UNREACHABLE("unimp"); } + Ref visitStringConcat(StringConcat* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } Ref visitRefAs(RefAs* curr) { unimplemented(curr); WASM_UNREACHABLE("unimp"); |