summaryrefslogtreecommitdiff
path: root/test/wasm2js/emscripten-grow-yes.2asm.js.opt
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2022-10-05 15:18:22 -0700
committerGitHub <noreply@github.com>2022-10-05 15:18:22 -0700
commitc43721a1ae80539aea5ea9d8d295b7e377aa03f5 (patch)
tree4a796dd8baa33f6edd44b16addb967483f6b1479 /test/wasm2js/emscripten-grow-yes.2asm.js.opt
parent9b5ba422bf670754a5ac4fb39b0199ac8e1edb84 (diff)
downloadbinaryen-c43721a1ae80539aea5ea9d8d295b7e377aa03f5.tar.gz
binaryen-c43721a1ae80539aea5ea9d8d295b7e377aa03f5.tar.bz2
binaryen-c43721a1ae80539aea5ea9d8d295b7e377aa03f5.zip
wasm2js: Support for flexible module import naming (#5114)
The previous code was making emscripten-specific assumptions about imports basically all coming from the `env` module. I can't find a way to make this backwards compatible so may do a combined roll with the emscripten-side change: https://github.com/emscripten-core/emscripten/pull/17806
Diffstat (limited to 'test/wasm2js/emscripten-grow-yes.2asm.js.opt')
-rw-r--r--test/wasm2js/emscripten-grow-yes.2asm.js.opt6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/wasm2js/emscripten-grow-yes.2asm.js.opt b/test/wasm2js/emscripten-grow-yes.2asm.js.opt
index 68a8c556c..8fe28321c 100644
--- a/test/wasm2js/emscripten-grow-yes.2asm.js.opt
+++ b/test/wasm2js/emscripten-grow-yes.2asm.js.opt
@@ -23,8 +23,8 @@ function instantiate(info) {
function initActiveSegments(imports) {
base64DecodeToExistingUint8Array(bufferView, 1600, "YWJj");
}
-function asmFunc(importObject) {
- var env = importObject.env || importObject;
+function asmFunc(imports) {
+ var env = imports.env;
var memory = env.memory;
var buffer = memory.buffer;
memory.grow = __wasm_memory_grow;
@@ -57,7 +57,7 @@ function asmFunc(importObject) {
// EMSCRIPTEN_END_FUNCS
;
bufferView = HEAPU8;
- initActiveSegments(env);
+ initActiveSegments(imports);
function __wasm_memory_size() {
return buffer.byteLength / 65536 | 0;
}