diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-03-23 16:10:35 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-03-23 16:10:35 -0700 |
commit | 359c895db53b99fd176aac926914ecebcb4ddd93 (patch) | |
tree | 48cbe7e6e0e6af110cd5bac26df8f87fc6f09a0d /src/js | |
parent | a67434f2dd05f7590c2b7ab18b6bf9d6215f79f2 (diff) | |
parent | 85959a42f97857491bac46a25e9634029f6eb3b4 (diff) | |
download | binaryen-359c895db53b99fd176aac926914ecebcb4ddd93.tar.gz binaryen-359c895db53b99fd176aac926914ecebcb4ddd93.tar.bz2 binaryen-359c895db53b99fd176aac926914ecebcb4ddd93.zip |
Merge pull request #275 from WebAssembly/closure-fix
Test suite corner case fixes
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/wasm.js-post.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/js/wasm.js-post.js b/src/js/wasm.js-post.js index 91ca0c4e8..bae450e9a 100644 --- a/src/js/wasm.js-post.js +++ b/src/js/wasm.js-post.js @@ -49,10 +49,10 @@ function integrateWasmJS(Module) { }; var info = { - global: null, - env: null, - asm2wasm: asm2wasmImports, - parent: Module // Module inside wasm-js.cpp refers to wasm-js.cpp; this allows access to the outside program. + 'global': null, + 'env': null, + 'asm2wasm': asm2wasmImports, + 'parent': Module // Module inside wasm-js.cpp refers to wasm-js.cpp; this allows access to the outside program. }; var exports = null; |