blob: b47413a78c1b1cc3d58afed66af7b98a70cbb738 (
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
28
29
30
31
32
33
34
35
36
37
|
// |reftest| async
// Copyright (C) 2020 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-promise.race
description: >
Promise.resolve is retrieved before GetIterator call (non-callable).
info: |
Promise.race ( iterable )
[...]
3. Let promiseResolve be GetPromiseResolve(C).
4. IfAbruptRejectPromise(promiseResolve, promiseCapability).
GetPromiseResolve ( promiseConstructor )
[...]
2. Let promiseResolve be ? Get(promiseConstructor, "resolve").
3. If IsCallable(promiseResolve) is false, throw a TypeError exception.
flags: [async]
features: [Symbol.iterator]
---*/
const iter = {
get [Symbol.iterator]() {
throw new Test262Error("unreachable");
},
};
Promise.resolve = "certainly not callable";
Promise.race(iter).then(() => {
throw new Test262Error("The promise should be rejected, but it was resolved");
}, (reason) => {
assert(reason instanceof TypeError);
}).then($DONE, $DONE);
|