blob: a5e6fd51d88e27aaebce60bd4c43b7136b9702dc [file] [log] [blame]
// Copyright (C) 2013 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 25.2.3.2
description: >
The value of GeneratorFunction.prototype.prototype is the
%GeneratorPrototype% intrinsic object.
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [generators]
---*/
var GeneratorFunctionPrototype = Object.getPrototypeOf(function*() {});
assert.sameValue(
GeneratorFunctionPrototype.prototype,
Object.getPrototypeOf(function*() {}.prototype)
);
verifyNotEnumerable(GeneratorFunctionPrototype, 'prototype');
verifyNotWritable(GeneratorFunctionPrototype, 'prototype');
verifyConfigurable(GeneratorFunctionPrototype, 'prototype');