summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-lineCount.js
blob: 1eeb28013d2206cf03167de4d593735401030ad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Test Script.lineCount.

var g = newGlobal({newCompartment: true});
var dbg = Debugger(g);

function test(scriptText, expectedLineCount) {
  let found = false;

  dbg.onNewScript = function(script, global) {
    assertEq(script.lineCount, expectedLineCount);
    found = true;
  };

  g.evaluate(scriptText);
  assertEq(found, true);
}

src = 'var a = (function(){\n' + // 0
      'var b = 9;\n' +           // 1
      'console.log("x", b);\n'+  // 2
      'return b;\n' +            // 3
      '})();';                   // 4
test(src, 5);