diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-04-23 17:13:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-23 17:13:47 -0700 |
commit | 5d3fcffdd9f9d9de10a0ce60d1e0163693c007c3 (patch) | |
tree | eccb11418795a0f508da2e785340e34bb82a1fc6 /test/wasm2js/reinterpret.2asm.js | |
parent | 7c5a789c6ccf09bfaec9c449aa606d8a6276b855 (diff) | |
download | binaryen-5d3fcffdd9f9d9de10a0ce60d1e0163693c007c3.tar.gz binaryen-5d3fcffdd9f9d9de10a0ce60d1e0163693c007c3.tar.bz2 binaryen-5d3fcffdd9f9d9de10a0ce60d1e0163693c007c3.zip |
wasm2js: emit quoted properties for the exports, to support closure compiler (#2043)
Diffstat (limited to 'test/wasm2js/reinterpret.2asm.js')
-rw-r--r-- | test/wasm2js/reinterpret.2asm.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/wasm2js/reinterpret.2asm.js b/test/wasm2js/reinterpret.2asm.js index b4954e59f..d53c50bab 100644 --- a/test/wasm2js/reinterpret.2asm.js +++ b/test/wasm2js/reinterpret.2asm.js @@ -105,8 +105,8 @@ function asmFunc(global, env, buffer) { var FUNCTION_TABLE = []; return { - i32_roundtrip: $1, - i64_roundtrip: legalstub$2 + "i32_roundtrip": $1, + "i64_roundtrip": legalstub$2 }; } |