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

Unified Diff: sdk/lib/async/future.dart

Issue 3005653002: SDK core library fuzzy arrow fixes. (Closed)
Patch Set: 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
« no previous file with comments | « pkg/dev_compiler/lib/sdk/ddc_sdk.sum ('k') | sdk/lib/internal/iterable.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/async/future.dart
diff --git a/sdk/lib/async/future.dart b/sdk/lib/async/future.dart
index eb5fa8b58ad808855a54955a98f6c41d5ee3f80b..42bfc5c7146fb338c3ad765b741ffdd6e82be8f2 100644
--- a/sdk/lib/async/future.dart
+++ b/sdk/lib/async/future.dart
@@ -382,7 +382,7 @@ abstract class Future<T> {
try {
// As each future completes, put its value into the corresponding
// position in the list of values.
- for (Future future in futures) {
+ for (var future in futures) {
int pos = remaining;
future.then((T value) {
remaining--;
« no previous file with comments | « pkg/dev_compiler/lib/sdk/ddc_sdk.sum ('k') | sdk/lib/internal/iterable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698