summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/generators/prototype-value.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statements/generators/prototype-value.js')
-rw-r--r--js/src/tests/test262/language/statements/generators/prototype-value.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/generators/prototype-value.js b/js/src/tests/test262/language/statements/generators/prototype-value.js
new file mode 100644
index 0000000000..1cd94ba4e0
--- /dev/null
+++ b/js/src/tests/test262/language/statements/generators/prototype-value.js
@@ -0,0 +1,21 @@
+// 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 instances directly inherit properties from the object that is the
+ value of the prototype property of the Generator function that created the
+ instance.
+es6id: 25.3
+features: [generators]
+---*/
+
+function* g() {}
+
+assert.sameValue(
+ Object.getPrototypeOf(g()),
+ g.prototype,
+ 'Instance created via function invocation'
+);
+
+reportCompare(0, 0);