blob: f49e68051f9332dea4e4f0ce578510f5384c1644 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Test that invoking the interrupt callback counts as a step.
function testResumptionVal(resumptionVal, turnOffDebugMode) {
var g = newGlobal({newCompartment: true});
var dbg = new Debugger;
g.log = "";
g.resumptionVal = resumptionVal;
setInterruptCallback(function () {
g.log += "i";
dbg.addDebuggee(g);
var frame = dbg.getNewestFrame();
frame.onStep = function () {
g.log += "s";
frame.onStep = undefined;
if (turnOffDebugMode)
dbg.removeDebuggee(g);
return resumptionVal;
};
return true;
});
try {
return g.eval("(" + function f() {
log += "f";
invokeInterruptCallback(function (interruptRv) {
log += "r";
assertEq(interruptRv, resumptionVal == undefined);
});
log += "a";
return 42;
} + ")();");
} finally {
assertEq(g.log, resumptionVal == undefined ? "fisra" : "fisr");
}
}
assertEq(testResumptionVal(undefined), 42);
assertEq(testResumptionVal({ return: "not 42" }), "not 42");
try {
testResumptionVal({ throw: "thrown 42" });
} catch (e) {
assertEq(e, "thrown 42");
}
assertEq(testResumptionVal(undefined, true), 42);
assertEq(testResumptionVal({ return: "not 42" }, true), "not 42");
try {
testResumptionVal({ throw: "thrown 42" }, true);
} catch (e) {
assertEq(e, "thrown 42");
}
|