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/tee_local.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/tee_local.2asm.js')
-rw-r--r-- | test/wasm2js/tee_local.2asm.js | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/test/wasm2js/tee_local.2asm.js b/test/wasm2js/tee_local.2asm.js index 10e31e6c8..5ef3aee68 100644 --- a/test/wasm2js/tee_local.2asm.js +++ b/test/wasm2js/tee_local.2asm.js @@ -361,17 +361,17 @@ function asmFunc(global, env, buffer) { var FUNCTION_TABLE = []; return { - type_local_i32: $0, - type_local_i64: legalstub$1, - type_local_f32: legalstub$2, - type_local_f64: $3, - type_param_i32: $4, - type_param_i64: legalstub$5, - type_param_f32: legalstub$6, - type_param_f64: $7, - type_mixed: legalstub$8, - write: legalstub$9, - result: legalstub$10 + "type_local_i32": $0, + "type_local_i64": legalstub$1, + "type_local_f32": legalstub$2, + "type_local_f64": $3, + "type_param_i32": $4, + "type_param_i64": legalstub$5, + "type_param_f32": legalstub$6, + "type_param_f64": $7, + "type_mixed": legalstub$8, + "write": legalstub$9, + "result": legalstub$10 }; } |