blob: 4e30759cf2fe7f51ed1752190e7214c67a42562c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Ensure the HadGetterSetterChange flag is set.
Object.defineProperty(Promise, "foo", {configurable: true, get: function() {}});
Object.defineProperty(Promise, "foo", {configurable: true, get: function() {}});
// Initialize PromiseLookup.
var p = new Promise(() => {});
for (let i = 0; i < 5; i++) {
Promise.all([p]);
}
// Redefine the Promise[Symbol.species] getter without changing its attributes/shape.
let count = 0;
Object.defineProperty(Promise, Symbol.species,
{get: function() { count++; }, enumerable: false, configurable: true});
// Ensure PromiseLookup now deoptimizes and calls the getter.
for (let i = 0; i < 5; i++) {
Promise.all([p]);
}
assertEq(count, 5);
|