summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/GeneratorFunction/instance-name.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/GeneratorFunction/instance-name.js')
-rw-r--r--js/src/tests/test262/built-ins/GeneratorFunction/instance-name.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/GeneratorFunction/instance-name.js b/js/src/tests/test262/built-ins/GeneratorFunction/instance-name.js
new file mode 100644
index 0000000000..dd3e2a19d9
--- /dev/null
+++ b/js/src/tests/test262/built-ins/GeneratorFunction/instance-name.js
@@ -0,0 +1,27 @@
+// Copyright (C) 2015 the V8 project authors. All rights reserved.
+// 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]
+features: [generators]
+---*/
+
+var GeneratorFunction = Object.getPrototypeOf(function*() {}).constructor;
+
+assert.sameValue(GeneratorFunction().name, 'anonymous');
+verifyNotEnumerable(GeneratorFunction(), 'name');
+verifyNotWritable(GeneratorFunction(), 'name');
+verifyConfigurable(GeneratorFunction(), 'name');
+
+reportCompare(0, 0);