blob: 78b38767abeea6be26e56800470cbda4035be602 [file] [log] [blame]
// 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-tostringtag
description: >
`Symbol.toStringTag` property descriptor
info: |
The initial value of the @@toStringTag property is the String
value "AsyncGeneratorFunction".
This property has the attributes { [[Writable]]: false,
[[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [async-iteration, Symbol.toStringTag]
---*/
var AsyncGeneratorFunctionPrototype = Object.getPrototypeOf(async function*() {});
verifyProperty(AsyncGeneratorFunctionPrototype, Symbol.toStringTag, {
value: 'AsyncGeneratorFunction',
enumerable: false,
writable: false,
configurable: true,
});