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

Unified Diff: pkg/kernel/testcases/closures/syncstar.dart

Issue 3000333002: Fix several bugs in closure conversion. (Closed)
Patch Set: Fix bugs. Created 3 years, 4 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: pkg/kernel/testcases/closures/syncstar.dart
diff --git a/pkg/kernel/testcases/closures/syncstar.dart b/pkg/kernel/testcases/closures/syncstar.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4c3c9ac6655ab33b1ea235dec5ddc5821b038530
--- /dev/null
+++ b/pkg/kernel/testcases/closures/syncstar.dart
@@ -0,0 +1,21 @@
+/*
Dmitry Stefantsov 2017/08/24 11:49:57 Please, use one-line comments and add a descriptio
sjindel 2017/08/24 14:50:14 Done.
sjindel 2017/08/24 14:50:14 Done.
Dmitry Stefantsov 2017/08/24 15:07:29 Nope :)
sjindel 2017/08/24 15:13:42 Oops!
+ * Copyright (c) 2017, 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.
+ */
+range(int high) {
+ iter(int low) sync* {
+ while (high-- > low) yield high;
+ }
+
+ return iter;
+}
+
+main() {
+ var sum = 0;
+ for (var x in range(10)(2)) sum += x;
+
+ if (sum != 44) {
+ throw new Exception("Incorrect output.");
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698