diff options
Diffstat (limited to 'test/wasm2js/dot_import.2asm.js')
-rw-r--r-- | test/wasm2js/dot_import.2asm.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/wasm2js/dot_import.2asm.js b/test/wasm2js/dot_import.2asm.js index 0cd48aaf1..a35eabe95 100644 --- a/test/wasm2js/dot_import.2asm.js +++ b/test/wasm2js/dot_import.2asm.js @@ -13,8 +13,12 @@ function asmFunc(imports) { var Math_sqrt = Math.sqrt; var mod_ule = imports["mod.ule"]; var base = mod_ule["ba.se"]; + function $0() { + base(); + } + return { - "exported": base + "exported": $0 }; } |