summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/AsyncGeneratorFunction/prototype/constructor.js
blob: a8cc75565625e7bebcfedfc5f91c4cb0b41db89d (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
// Copyright (C) 2018 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-asyncgeneratorfunction-prototype-constructor
description: >
  `constructor` property of the AsyncGeneratorFunction.prototype object
info: |
  The initial value of AsyncGeneratorFunction.prototype.constructor is the intrinsic
  object %AsyncGeneratorFunction%.

  This property has the attributes { [[Writable]]: false, [[Enumerable]]:
  false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [async-iteration]
---*/

var AsyncGeneratorFunction = Object.getPrototypeOf(async function* () {}).constructor;

assert.sameValue(AsyncGeneratorFunction.prototype.constructor, AsyncGeneratorFunction);

verifyProperty(AsyncGeneratorFunction.prototype, "constructor", {
  enumerable: false,
  writable: false,
  configurable: true,
});

reportCompare(0, 0);