summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-onStep-15.js
blob: 539ff5f0545c8b48228341236d695a6e4a134371 (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
// Test how stepping interacts with for(;;) statements.

let g = newGlobal();

// We want a for(;;) loop whose body is evaluated at least once, to
// see whether the loop head is hit a second time.
g.eval(`function f() {
  let x = 0;
  debugger;                     // +0
  for(;;) {                     // +1
    if (x++ == 1) break;        // +2
  }                             // +3
  debugger;                     // +4
}`);

let dbg = Debugger(g);

function test(s, expected) {
  let result = '';

  dbg.onDebuggerStatement = function(frame) {
    // On the second debugger statement, we're done.
    dbg.onDebuggerStatement = function(frame) {
      frame.onStep = undefined;
    };

    let debugLine = frame.script.getOffsetLocation(frame.offset).lineNumber;
    frame.onStep = function() {
      // Only examine stops at entry points for the line.
      let lineNo = this.script.getOffsetLocation(this.offset).lineNumber;
      if (this.script.getLineOffsets(lineNo).indexOf(this.offset) < 0) {
        return undefined;
      }

      let delta = this.script.getOffsetLocation(this.offset).lineNumber - debugLine;
      result += delta;
    };
  };
  g.eval(s);
  assertEq(result, expected);
}

test('f()', '2124');