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

Unified Diff: tests/language/async_star_regression_23116_test.dart

Issue 1070733002: Dart2js async* functions only resume execution of the body when suspended on yield. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review Created 5 years, 8 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
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/js_helper.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/async_star_regression_23116_test.dart
diff --git a/tests/language/async_star_regression_23116_test.dart b/tests/language/async_star_regression_23116_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..d1c63909e9ac06c772846e6f3d733a69daecc6b6
--- /dev/null
+++ b/tests/language/async_star_regression_23116_test.dart
@@ -0,0 +1,33 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// Regression test for https://code.google.com/p/dart/issues/detail?id=23116
+
+import "package:expect/expect.dart";
+import "package:async_helper/async_helper.dart";
+import 'dart:async';
+
+Stream<int> foo(Completer completer, Future future) async* {
+ completer.complete(100);
+ int x = await future;
+ Expect.equals(42, x);
+}
+
+test() async {
+ Completer completer1 = new Completer();
+ Completer completer2 = new Completer();
+ StreamSubscription s = foo(completer1, completer2.future).listen((v) => null);
+ await completer1.future;
+ // At this moment foo is waiting on the given future.
+ s.pause();
+ // Ensure that execution of foo is not resumed - the future is not completed
+ // yet.
+ s.resume();
+ completer2.complete(42);
+}
+
+main() {
+ asyncStart();
+ test().then((_) => asyncEnd());
+}
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/js_helper.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698