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

Unified Diff: tests/language/await_for_use_local_test.dart

Issue 964553004: Analyze locals in await for loops as inside a try-finally. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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: tests/language/await_for_use_local_test.dart
diff --git a/tests/language/await_for_use_local_test.dart b/tests/language/await_for_use_local_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..de131bb80a818409d05bbca550816cc8710c8709
--- /dev/null
+++ b/tests/language/await_for_use_local_test.dart
@@ -0,0 +1,40 @@
+// 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.
+
+import "dart:async";
+import "package:expect/expect.dart";
+import "package:async_helper/async_helper.dart";
+
+sumStream(s) async {
+ int accum = 0;
+ await for (var v in s) {
+ accum += v;
+ }
+ return accum;
+}
+
+test() async {
+ var countStreamController;
+ int i = 0;
+ void tick() {
+ if (i < 10) {
+ countStreamController.add(i);
+ i++;
+ scheduleMicrotask(tick);
+ } else {
+ countStreamController.close();
+ }
+ }
+
+ countStreamController = new StreamController(
+ onListen: () {
+ scheduleMicrotask(tick);
+ });
+ Expect.equals(45, await sumStream(countStreamController.stream));
+}
+
+void main() {
+ asyncStart();
+ test().then((_) => asyncEnd());
+}
« pkg/compiler/lib/src/ssa/builder.dart ('K') | « pkg/compiler/lib/src/ssa/builder.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698