blob: 48ccd366facf31f3c451c8b56fc8982979b83afd (
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
|
// Stepping works across `await` in async functions.
// Set up debuggee.
var g = newGlobal({newCompartment: true});
g.log = "";
g.eval(` // line 1
async function aloop() { // 2
for (let i = 0; i < 3; i++) { // 3
await i; // 4
log += " "; // 5
} // 6
log += "^"; // 7
} // 8
`);
// Set up debugger.
let previousLine = -1;
let dbg = new Debugger(g);
dbg.onEnterFrame = frame => {
frame.onStep = function () {
assertEq(this, frame);
let line = frame.script.getOffsetLocation(frame.offset).lineNumber;
if (previousLine != line) {
g.log += line; // We stepped to a new line.
previousLine = line;
}
};
dbg.onEnterFrame = undefined;
};
// Run.
g.aloop();
drainJobQueue();
assertEq(g.log, "2345 345 345 37^8");
|