summaryrefslogtreecommitdiff
path: root/test/built-ins/AsyncIteratorPrototype/Symbol.asyncIterator/prop-desc.js
blob: 68aadc9b725b027b8931ebd0698fa1a34c1a8440 (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
// Copyright (C) 2018 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-asynciteratorprototype
description: Property descriptor
info: |
    ECMAScript Standard Built-in Objects

    Every other data property described in clauses 18 through 26 and in Annex
    B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false,
    [[Configurable]]: true } unless otherwise specified.
features: [Symbol.asyncIterator, async-iteration]
includes: [propertyHelper.js]
---*/

async function* generator() {}
var AsyncIteratorPrototype = Object.getPrototypeOf(Object.getPrototypeOf(generator.prototype))

assert.sameValue(typeof AsyncIteratorPrototype[Symbol.asyncIterator], 'function');

verifyProperty(AsyncIteratorPrototype, Symbol.asyncIterator, {
  enumerable: false,
  writable: true,
  configurable: true,
});