summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Promise/get-prototype-abrupt.js
blob: 5cbf716e9ca051ff549bf535740afa9ef7d1c476 (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
// Copyright (C) 2019 Aleksey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-promise-executor
description: >
  Abrupt completion from "prototype" property access
info: |
  25.6.3.1 Promise ( executor )

  [...]
  3. Let promise be ? OrdinaryCreateFromConstructor(NewTarget, "%PromisePrototype%", « [[PromiseState]], [[PromiseResult]], [[PromiseFulfillReactions]], [[PromiseRejectReactions]], [[PromiseIsHandled]] »).

  9.1.13 OrdinaryCreateFromConstructor ( constructor, intrinsicDefaultProto [ , internalSlotsList ] )

  [...]
  2. Let proto be ? GetPrototypeFromConstructor(constructor, intrinsicDefaultProto).

  9.1.14 GetPrototypeFromConstructor ( constructor, intrinsicDefaultProto )

  [...]
  3. Let proto be ? Get(constructor, "prototype").
features: [Reflect, Reflect.construct]
---*/

var bound = (function() {}).bind();
Object.defineProperty(bound, 'prototype', {
  get: function() {
    throw new Test262Error();
  },
});

assert.throws(Test262Error, function() {
  Reflect.construct(Promise, [function() {}], bound);
});

reportCompare(0, 0);