summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/any/species-get-error.js
blob: 24ce52bd695de89e03ce23e37d97a287f2b13539 (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
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Promise.any() does not access a `Symbol.species` property of the `this` value
info: |
  Let C be the this value.
  Let promiseCapability be ? NewPromiseCapability(C).
  ...

features: [Promise.any, Symbol.species]
---*/
function C(executor) {
  executor(() => {}, () => {});
}

Object.defineProperty(C, Symbol.species, {
  get() {
    throw new Test262Error("Getter for Symbol.species called");
  }
});

C.resolve = function() {
  throw new Test262Error("C.resolve called unexpectedly");
};

Promise.any.call(C, [1]);

reportCompare(0, 0);