From d797c751df60aa5731a0cfaed1cc00811a5e273b Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Fri, 16 Sep 2022 09:33:08 -0700 Subject: wasm2js: Don't assume that `env.abort` can always be impored. (#5049) This import was being injected and then used to implement trapping. Rather than injecting an import that doesn't exist in the original module we instead use the existing mechanism to implement this as an internal helper. --- test/wasm2js/indirect-select.2asm.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'test/wasm2js/indirect-select.2asm.js') diff --git a/test/wasm2js/indirect-select.2asm.js b/test/wasm2js/indirect-select.2asm.js index 1f279dbc5..c79b0ae49 100644 --- a/test/wasm2js/indirect-select.2asm.js +++ b/test/wasm2js/indirect-select.2asm.js @@ -13,7 +13,6 @@ function asmFunc(importObject) { var Math_ceil = Math.ceil; var Math_trunc = Math.trunc; var Math_sqrt = Math.sqrt; - var abort = env.abort; var nan = NaN; var infinity = Infinity; function $0(x) { @@ -32,8 +31,8 @@ function asmFunc(importObject) { }; } -var retasmFunc = asmFunc( { abort: function() { throw new Error('abort'); }, - table - }); +var retasmFunc = asmFunc({ + table, +}); export var foo_true = retasmFunc.foo_true; export var foo_false = retasmFunc.foo_false; -- cgit v1.2.3