summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/onNewScript-off-main-thread-01.js
blob: 090c8d6c3cbbae7d4e7c328f45619190e856d902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// We still get onNewScript notifications for code compiled off the main thread.

if (helperThreadCount() === 0)
  quit(0);

var g = newGlobal();
var dbg = new Debugger(g);

var log;
dbg.onNewScript = function (s) {
  log += 's';
  assertEq(s.source.text, '"t" + "wine"');
}

log = '';
g.offThreadCompileScript('"t" + "wine"');
assertEq(g.runOffThreadScript(), 'twine');
assertEq(log, 's');