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