blob: 23925f61832e0abd03f38d2a95e27716839bf2ef (
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
56
57
58
59
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/* eslint-disable no-shadow, max-nested-callbacks */
"use strict";
/**
* Verify that frame actors retrieved with the frames request
* are included in the pause packet's popped-frames property.
*/
add_task(
threadFrontTest(async ({ threadFront, debuggee }) => {
await executeOnNextTickAndWaitForPause(
() => evalCode(debuggee),
threadFront
);
const frameResponse = await threadFront.getFrames(0, null);
Assert.equal(frameResponse.frames.length, 5);
// Now wait for the next pause, after which the three
// youngest actors should be popped..
const expectPopped = frameResponse.frames
.slice(0, 3)
.map(frame => frame.actorID);
expectPopped.sort();
threadFront.resume();
const pausePacket = await waitForPause(threadFront);
const popped = pausePacket.poppedFrames.sort();
Assert.equal(popped.length, 3);
for (let i = 0; i < 3; i++) {
Assert.equal(expectPopped[i], popped[i]);
}
threadFront.resume();
})
);
function evalCode(debuggee) {
debuggee.eval(
"(" +
function() {
function depth3() {
debugger;
}
function depth2() {
depth3();
}
function depth1() {
depth2();
}
depth1();
debugger;
} +
")()"
);
}
|