From ee00f647750f23e6c24e67424bafab39b244c835 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Mon, 21 Sep 2020 16:39:46 -0700 Subject: wasm2js: Support exported tables (#3152) --- scripts/wasm2js.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'scripts/wasm2js.js') diff --git a/scripts/wasm2js.js b/scripts/wasm2js.js index bc9ac6cbd..7bb8453bc 100644 --- a/scripts/wasm2js.js +++ b/scripts/wasm2js.js @@ -72,7 +72,7 @@ var WebAssembly = { // Additional imports asmLibraryArg['__tempMemory__'] = 0; // risky! // This will be replaced by the actual wasm2js code. - var exports = instantiate(asmLibraryArg, wasmMemory, wasmTable); + var exports = instantiate(asmLibraryArg, wasmMemory); return { 'exports': exports }; @@ -208,5 +208,3 @@ var asmLibraryArg = { }; var wasmMemory = new WebAssembly.Memory({ initial: 1 }); -var wasmTable = new WebAssembly.Table({ initial: 1 }); - -- cgit v1.2.3