summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/async-generator/yield-star-throw-notdone-iter-value-throws.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statements/async-generator/yield-star-throw-notdone-iter-value-throws.js')
-rw-r--r--js/src/tests/test262/language/statements/async-generator/yield-star-throw-notdone-iter-value-throws.js65
1 files changed, 65 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/async-generator/yield-star-throw-notdone-iter-value-throws.js b/js/src/tests/test262/language/statements/async-generator/yield-star-throw-notdone-iter-value-throws.js
new file mode 100644
index 0000000000..fbb3376934
--- /dev/null
+++ b/js/src/tests/test262/language/statements/async-generator/yield-star-throw-notdone-iter-value-throws.js
@@ -0,0 +1,65 @@
+// |reftest| async
+// Copyright (C) 2019 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-generator-function-definitions-runtime-semantics-evaluation
+description: >
+ Abrupt completion when calling IteratorValue is propagated when received.[[Type]] is throw.
+info: |
+ 14.4.14 Runtime Semantics: Evaluation
+ YieldExpression : yield* AssignmentExpression
+
+ ...
+ 7. Repeat,
+ ...
+ b. Else if received.[[Type]] is throw, then
+ ...
+ ii. If throw is not undefined, then
+ ...
+ 7. If generatorKind is async, then set received to AsyncGeneratorYield(? IteratorValue(innerResult)).
+ ...
+
+flags: [async]
+features: [async-iteration]
+---*/
+
+var token = {};
+
+var asyncIter = {
+ [Symbol.asyncIterator]() {
+ return this;
+ },
+ next() {
+ return {
+ done: false,
+ value: undefined,
+ };
+ },
+ throw() {
+ return {
+ done: false,
+ get value() {
+ throw token;
+ }
+ };
+ }
+};
+
+async function* f() {
+ var thrown;
+ try {
+ yield* asyncIter;
+ } catch (e) {
+ thrown = e;
+ }
+ return thrown;
+}
+
+var iter = f();
+
+iter.next().then(() => {
+ iter.throw().then(({value}) => {
+ assert.sameValue(value, token);
+ }).then($DONE, $DONE);
+}).catch($DONE);