test262/test/language/statements/generators/name-property-descriptor.js

17 lines
410 B
JavaScript

// 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 functions should define a `name` property.
includes: [propertyHelper.js]
es6id: 25.2.4
---*/
function* g() {}
assert.sameValue(g.name, 'g');
verifyNotEnumerable(g, 'name');
verifyNotWritable(g, 'name');
verifyConfigurable(g, 'name');