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

Unified Diff: dart/utils/pub/entrypoint.dart

Issue 12296011: Version 0.3.7.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 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
« no previous file with comments | « dart/tools/dom/templates/immutable_list_mixin.darttemplate ('k') | dart/utils/pub/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/utils/pub/entrypoint.dart
===================================================================
--- dart/utils/pub/entrypoint.dart (revision 18634)
+++ dart/utils/pub/entrypoint.dart (working copy)
@@ -134,7 +134,7 @@
return Future.wait(packageVersions.map((id) {
if (id.isRoot) return new Future.immediate(id);
return install(id);
- }));
+ }).toList());
}).then(_saveLockFile)
.then(_installSelfReference)
.then(_linkSecondaryPackageDirs);
@@ -267,7 +267,7 @@
if (!dirExists(file)) return;
return _linkSecondaryPackageDir(file);
});
- }));
+ }).toList());
});
});
}
@@ -287,7 +287,7 @@
fileAndSubfiles.addAll(subfiles);
return fileAndSubfiles;
});
- }));
+ }).toList());
}).then(flatten);
}
« no previous file with comments | « dart/tools/dom/templates/immutable_list_mixin.darttemplate ('k') | dart/utils/pub/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698