summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/promise/settle-now-breaks-all-invariants-2.js
blob: 79129003e3271db4751eea8839cba2004c4c7c21 (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
// Test we don't assert when the promise is settled and the SpeciesConstructor
// call in Promise.prototype.then throws an exception.

function newPromiseCapability() {
    var resolve, reject, promise = new Promise(function(r1, r2) {
        resolve = r1;
        reject = r2;
    });
    return {promise, resolve, reject};
}


var {promise, resolve} = newPromiseCapability();

var p = Promise.resolve(0);

p.constructor = {
    [Symbol.species]: function() {
        throw new Error();
    }
};

// Enqueue a PromiseResolveThenableJob.
resolve(p);

// Settle the promise after the resolve call.
settlePromiseNow(promise);