blob: aaf893be175b7becee7cb2fe62c01e59b74944d2 [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-asyncgenerator-prototype-thow
description: GeneratorPrototype.return property description
info: |
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
false, [[Configurable]]: false }.
includes: [propertyHelper.js]
features: [async-iteration]
---*/
async function* g() {}
var AsyncGeneratorPrototype = Object.getPrototypeOf(g).prototype;
verifyProperty(AsyncGeneratorPrototype, "return", {
enumerable: false,
writable: true,
configurable: true,
});