blob: 24db07dc72688d7bc9af349e3971aa24bce36d8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// |jit-test| skip-if: !wasmDebuggingEnabled()
// Tests that JavaScript scripts have a "js" format and wasm scripts have a
// "wasm" format.
var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);
var gotScript;
dbg.onNewScript = (script) => {
gotScript = script;
};
g.eval(`(() => {})()`);
assertEq(gotScript.format, "js");
g.eval(`o = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary('(module (func) (export "" (func 0)))')));`);
assertEq(gotScript.format, "wasm");
|