summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-onNewPromise-01.js
blob: 9788e027c9e7850c3ce6de3d1df21f232aabf3d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Test that the onNewPromise hook gets called when promises are allocated in
// the scope of debuggee globals.

var g = newGlobal({newCompartment: true});
var dbg = new Debugger();
var gw = dbg.addDebuggee(g);


let promisesFound = [];
dbg.onNewPromise = p => { promisesFound.push(p); };

let p1 = new g.Promise(function (){});
assertEq(promisesFound.indexOf(gw.makeDebuggeeValue(p1)) != -1, true);