Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: test/test262/local-tests/test/language/expressions/async-generators/expression-await-as-yield-operand.js

Issue 2622833002: WIP [esnext] implement async iteration proposal (Closed)
Patch Set: simplify AsyncIteratorValueUnwrap Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/test262/local-tests/test/language/expressions/async-generators/expression-await-as-yield-operand.js
diff --git a/test/test262/local-tests/test/language/expressions/async-generators/expression-await-as-yield-operand.js b/test/test262/local-tests/test/language/expressions/async-generators/expression-await-as-yield-operand.js
new file mode 100644
index 0000000000000000000000000000000000000000..cad8157bb7d6bd84a7344b398aa38806bd7d5bd0
--- /dev/null
+++ b/test/test262/local-tests/test/language/expressions/async-generators/expression-await-as-yield-operand.js
@@ -0,0 +1,24 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+author: Caitlin Potter <caitp@igalia.com>
+esid: 14.4
+description: >
+ AwaitExpressions are valid operands to yield expressions.
+flags: [async]
+---*/
+
+var iter = (async function*() {
+ yield await "a";
+})();
+
+iter.next().then(function(result) {
+ assert.sameValue(result.value, "a", 'First result `value`');
+ assert.sameValue(result.done, false, 'First result `done` flag');
+}).then(undefined, $DONE);
+
+iter.next().then(function(result) {
+ assert.sameValue(result.value, undefined, 'Second result `value`');
+ assert.sameValue(result.done, true, 'Second result `done` flag');
+}).then($DONE, $DONE);

Powered by Google App Engine
This is Rietveld 408576698