summaryrefslogtreecommitdiff
path: root/test/binaryen.js/debug-info.js
diff options
context:
space:
mode:
authorDaniel Wirtz <dcode@dcode.io>2019-12-20 00:36:11 +0100
committerAlon Zakai <azakai@google.com>2019-12-19 15:36:11 -0800
commit02e6ba2b139e6c7ac0a97baa2af75df4250e140f (patch)
treeabef9ae255bf9d7369c47ef8c0ff714ef4d85b46 /test/binaryen.js/debug-info.js
parent81c16df401347e8e067fe9ccf0c26ae532bc03d5 (diff)
downloadbinaryen-02e6ba2b139e6c7ac0a97baa2af75df4250e140f.tar.gz
binaryen-02e6ba2b139e6c7ac0a97baa2af75df4250e140f.tar.bz2
binaryen-02e6ba2b139e6c7ac0a97baa2af75df4250e140f.zip
Compile Binaryen to WebAssembly (#2503)
This PR enables compiling Binaryen to WebAssembly when building binaryen.js. Since WebAssembly is best compiled and instantiated asynchronously in browsers, it also adds a new mechanism to tell if respectively when the module is ready by means of one of the following: // Using a promise const binaryen = require("binaryen"); binaryen.ready.then(() => { ... use normally ... }); // Using await const binaryen = require("binaryen"); (async () => { await binaryen.ready; ... use normally ... })(); // Where top-level await is available const binaryen = await require("binaryen").ready; ... use normally ... One can also tell if Binaryen is already ready (for example when assuming it in follow-up code) by: if (/* we already know that */ binaryen.isReady) { ... use normally ... } else { throw Error("Binaryen is supposed to be ready here but isn't"); } The JS test cases have been updated accordingly by wrapping everything in a test function and invoking it once ready. Documentation will have to be updated as well to cover this of course. New file size is about 2.5mb, even though the Wasm becomes inlined into the JS file which makes distribution across different environments a lot easier. Also makes building binaryen (to either js or wasm) emit binaryen.js, and not binaryen_js.js etc. Supersedes and thus fixes #1381 With .ready it also fixes #2452
Diffstat (limited to 'test/binaryen.js/debug-info.js')
-rw-r--r--test/binaryen.js/debug-info.js68
1 files changed, 36 insertions, 32 deletions
diff --git a/test/binaryen.js/debug-info.js b/test/binaryen.js/debug-info.js
index d1634f10e..a769d8911 100644
--- a/test/binaryen.js/debug-info.js
+++ b/test/binaryen.js/debug-info.js
@@ -11,37 +11,41 @@ var wast = `
)
`;
-// Use defaults (should not emit debug info)
-console.log("=== default ===");
-console.log("debugInfo=" + Binaryen.getDebugInfo());
-var module = Binaryen.parseText(wast);
-var binary = module.emitBinary();
-module.dispose();
-module = Binaryen.readBinary(binary);
-console.log(module.emitText());
-assert(module.validate());
-module.dispose();
+function test() {
+ // Use defaults (should not emit debug info)
+ console.log("=== default ===");
+ console.log("debugInfo=" + Binaryen.getDebugInfo());
+ var module = Binaryen.parseText(wast);
+ var binary = module.emitBinary();
+ module.dispose();
+ module = Binaryen.readBinary(binary);
+ console.log(module.emitText());
+ assert(module.validate());
+ module.dispose();
-// With debug info
-console.log("=== with debug info ===");
-Binaryen.setDebugInfo(true);
-console.log("debugInfo=" + Binaryen.getDebugInfo());
-module = Binaryen.parseText(wast);
-binary = module.emitBinary();
-module.dispose();
-module = Binaryen.readBinary(binary);
-console.log(module.emitText());
-assert(module.validate());
-module.dispose();
+ // With debug info
+ console.log("=== with debug info ===");
+ Binaryen.setDebugInfo(true);
+ console.log("debugInfo=" + Binaryen.getDebugInfo());
+ module = Binaryen.parseText(wast);
+ binary = module.emitBinary();
+ module.dispose();
+ module = Binaryen.readBinary(binary);
+ console.log(module.emitText());
+ assert(module.validate());
+ module.dispose();
-// Without debug info
-console.log("=== without debug info ===");
-Binaryen.setDebugInfo(false);
-console.log("debugInfo=" + Binaryen.getDebugInfo());
-module = Binaryen.parseText(wast);
-binary = module.emitBinary();
-module.dispose();
-module = Binaryen.readBinary(binary);
-console.log(module.emitText());
-assert(module.validate());
-module.dispose();
+ // Without debug info
+ console.log("=== without debug info ===");
+ Binaryen.setDebugInfo(false);
+ console.log("debugInfo=" + Binaryen.getDebugInfo());
+ module = Binaryen.parseText(wast);
+ binary = module.emitBinary();
+ module.dispose();
+ module = Binaryen.readBinary(binary);
+ console.log(module.emitText());
+ assert(module.validate());
+ module.dispose();
+}
+
+Binaryen.ready.then(test);