summaryrefslogtreecommitdiff
path: root/test/built-ins/AsyncGeneratorFunction/prototype/constructor.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/AsyncGeneratorFunction/prototype/constructor.js')
-rw-r--r--test/built-ins/AsyncGeneratorFunction/prototype/constructor.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/built-ins/AsyncGeneratorFunction/prototype/constructor.js b/test/built-ins/AsyncGeneratorFunction/prototype/constructor.js
new file mode 100644
index 000000000..c36680252
--- /dev/null
+++ b/test/built-ins/AsyncGeneratorFunction/prototype/constructor.js
@@ -0,0 +1,25 @@
+// Copyright (C) 2018 Valerie Young. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-asyncgeneratorfunction-prototype-constructor
+description: >
+ `constructor` property of the AsyncGeneratorFunction.prototype object
+info: |
+ The initial value of AsyncGeneratorFunction.prototype.constructor is the intrinsic
+ object %AsyncGeneratorFunction%.
+
+ This property has the attributes { [[Writable]]: false, [[Enumerable]]:
+ false, [[Configurable]]: true }.
+includes: [propertyHelper.js]
+features: [async-iteration]
+---*/
+
+var AsyncGeneratorFunction = Object.getPrototypeOf(async function* () {}).constructor;
+
+assert.sameValue(AsyncGeneratorFunction.prototype.constructor, AsyncGeneratorFunction);
+
+verifyProperty(AsyncGeneratorFunction.prototype, "constructor", {
+ enumerable: false,
+ writable: false,
+ configurable: true,
+});