summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/generators/prototype-property-descriptor.js
blob: 6d34087cfa2529fa96706790cbcb308e50f495ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2013 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Generator objects should define a `prototype` property.
includes: [propertyHelper.js]
es6id: 25.2.4
features: [generators]
---*/

function* g() {}

verifyNotEnumerable(g, 'prototype');
verifyWritable(g, 'prototype');
verifyNotConfigurable(g, 'prototype');

reportCompare(0, 0);