summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/AsyncGeneratorPrototype/Symbol.toStringTag.js
blob: b725467f5f48098e51983fbb949af8c7d6337343 (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) 2018 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-asyncgenerator-prototype-tostringtag
description: >
    `Symbol.toStringTag` property descriptor
info: |
    The initial value of the @@toStringTag property is the String value
    "AsyncGenerator".

    This property has the attributes { [[Writable]]: false, [[Enumerable]]:
    false, [[Configurable]]: true }.

includes: [propertyHelper.js]
features: [async-iteration, Symbol.toStringTag]
---*/

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

verifyProperty(AsyncGeneratorPrototype, Symbol.toStringTag, {
  value: 'AsyncGenerator',
  enumerable: false,
  writable: false,
  configurable: true,
});

reportCompare(0, 0);