summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/resolve/capability-invocation-error.js
blob: 6302336b1ca8106b61998cfdaed51cdb52761f09 (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
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Abrupt completion returned by "resolve" capability
esid: sec-promise.resolve
info: |
    1. Let C be the this value.
    [...]
    4. Let promiseCapability be ? NewPromiseCapability(C).
    5. Perform ? Call(promiseCapability.[[Resolve]], undefined, « x »).

    25.4.1.5 NewPromiseCapability
    [...]
    6. Let promise be Construct(C, «executor»).
    7. ReturnIfAbrupt(promise).
---*/

var P = function(executor) {
  return new Promise(function() {
    executor(
      function() {
        throw new Test262Error();
      },
      function() {}
    );
  });
};

assert.throws(Test262Error, function() {
  Promise.resolve.call(P);
});

reportCompare(0, 0);