blob: 4ed5b9fb508c62a8ca80f209f100e274bc675abe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// |jit-test| skip-if: !wasmDebuggingEnabled()
// Tests that wasm module scripts have access to binary sources.
load(libdir + "asserts.js");
load(libdir + "array-compare.js");
var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);
var s;
dbg.onNewScript = (script) => {
s = script;
}
g.eval(`o = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary('(module (func) (export "" (func 0)))')));`);
assertEq(s.format, "wasm");
var source = s.source;
// The text is never generated with the native Debugger API.
assertEq(source.text.includes('module'), false);
g.eval(`o = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary('(module (func) (export "" (func 0)))')));`);
assertEq(s.format, "wasm");
var source2 = s.source;
// The text is predefined if wasm binary sources are enabled.
assertEq(source2.text, '[debugger missing wasm binary-to-text conversion]');
// The binary contains Uint8Array which is equal to wasm bytecode;
arraysEqual(source2.binary, wasmTextToBinary('(module (func) (export "" (func 0)))'));
|