Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / GeneratorPrototype / next / name.js
blobf29ac96536342e03e107b89d7b7485d27ba0397a
1 // Copyright (C) 2015 AndrĂ© Bargull. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 es6id: 25.3.1.2
6 description: >
7   Generator.prototype.next.name is "next".
8 info: |
9   Generator.prototype.next ( value )
11   17 ECMAScript Standard Built-in Objects:
12     Every built-in Function object, including constructors, that is not
13     identified as an anonymous function has a name property whose value
14     is a String.
16     Unless otherwise specified, the name property of a built-in Function
17     object, if it exists, has the attributes { [[Writable]]: false,
18     [[Enumerable]]: false, [[Configurable]]: true }.
19 includes: [propertyHelper.js]
20 features: [generators]
21 ---*/
23 function* g() {}
24 var GeneratorPrototype = Object.getPrototypeOf(g).prototype;
26 verifyProperty(GeneratorPrototype.next, "name", {
27   value: "next",
28   writable: false,
29   enumerable: false,
30   configurable: true
31 });
33 reportCompare(0, 0);