2017-04-16 23:25:02 +02:00
|
|
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
2015-07-08 22:09:57 +02:00
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
es6id: 25.2.1.1
|
|
|
|
description: Assignment of function `name` attribute
|
|
|
|
info: >
|
|
|
|
[...]
|
|
|
|
3. Return CreateDynamicFunction(C, NewTarget, "generator", args).
|
|
|
|
|
|
|
|
ES6 19.2.1.1.1
|
|
|
|
RuntimeSemantics: CreateDynamicFunction(constructor, newTarget, kind, args)
|
|
|
|
|
|
|
|
[...]
|
|
|
|
29. Perform SetFunctionName(F, "anonymous").
|
|
|
|
includes: [propertyHelper.js]
|
2017-10-04 22:12:34 +02:00
|
|
|
features: [generators]
|
2015-07-08 22:09:57 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
var GeneratorFunction = Object.getPrototypeOf(function* () {}).constructor;
|
|
|
|
|
|
|
|
assert.sameValue(GeneratorFunction().name, 'anonymous');
|
|
|
|
verifyNotEnumerable(GeneratorFunction(), 'name');
|
|
|
|
verifyNotWritable(GeneratorFunction(), 'name');
|
|
|
|
verifyConfigurable(GeneratorFunction(), 'name');
|