blob: fbaa0232faa757a474eb63e7a6faea3da85b506e (
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
|
var g = newGlobal({newCompartment: true});
var dbg = new Debugger;
var gDO = dbg.addDebuggee(g);
function check(expr, expected) {
print("checking " + JSON.stringify(expr) + ", expecting " +
(expected ? "script" : "no script"));
let completion = gDO.executeInGlobal(expr);
if (completion.throw)
throw completion.throw.unsafeDereference();
let val = completion.return;
if (expected)
assertEq(val.script instanceof Debugger.Script, true);
else
assertEq(val.script, undefined);
}
check('(function g(){})', true);
check('(function* h() {})', true);
check('(async function j() {})', true);
check('(async function* k() {})', true);
check('({})', false);
check('Math.atan2', false);
|