blob: 36aab0d84f158d3a83b0bdd3c1bd9be2912eb4fb (
plain)
1
2
3
4
5
6
7
8
9
|
// WebAssembly module containing a single function with an unreachable instruction
const binary = await Deno.readFile("./unreachable.wasm");
const module = new WebAssembly.Module(binary);
const instance = new WebAssembly.Instance(module);
// Compare the stack trace with wasm_url.js, which compiles the WASM module with
// streaming APIs.
instance.exports.unreachable();
|