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

Unified Diff: utils/pub/system_cache.dart

Issue 10938003: Don't extract the name of a package from its description. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 3 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 | « utils/pub/source.dart ('k') | utils/pub/version_solver.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/system_cache.dart
diff --git a/utils/pub/system_cache.dart b/utils/pub/system_cache.dart
index 24db19de99a9be705a71f6f3d48043af228b7414..de236ac8067996018a1de0b5d924f3036e0baa45 100644
--- a/utils/pub/system_cache.dart
+++ b/utils/pub/system_cache.dart
@@ -61,7 +61,8 @@ class SystemCache {
// TODO(rnystrom): Once there are cached packages and this path is
// being used, figure out how version numbers should be acquired.
return subpaths.map((subpath) =>
- new PackageId(source, Version.none, basename(subpath)));
+ new PackageId(
+ basename(subpath), source, Version.none, basename(subpath)));
});
});
return Futures.wait(sources).transform(flatten);
« no previous file with comments | « utils/pub/source.dart ('k') | utils/pub/version_solver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698