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

Unified Diff: utils/pub/source.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/pubspec.dart ('k') | utils/pub/system_cache.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/source.dart
diff --git a/utils/pub/source.dart b/utils/pub/source.dart
index b879a5e9ea79ea103a23f0cc8086ebfa7a182142..e251d073256e39857e2225a5bb57118ae2fb6cfb 100644
--- a/utils/pub/source.dart
+++ b/utils/pub/source.dart
@@ -66,7 +66,7 @@ class Source {
/**
* Get the list of all versions that exist for the package described by
- * [description].
+ * [description]. [name] is the expected name of the package.
*
* Note that this does *not* require the packages to be installed, which is
* the point. This is used during version resolution to determine which
@@ -75,8 +75,8 @@ class Source {
* By default, this assumes that each description has a single version and
* uses [describe] to get that version.
*/
- Future<List<Version>> getVersions(description) {
- return describe(new PackageId(this, Version.none, description))
+ Future<List<Version>> getVersions(String name, description) {
+ return describe(new PackageId(name, this, Version.none, description))
.transform((pubspec) => [pubspec.version]);
}
@@ -128,7 +128,7 @@ class Source {
return ensureDir(dirname(path)).chain((_) => install(id, path));
}).chain((found) {
if (!found) throw 'Package $id not found.';
- return Package.load(path, systemCache.sources);
+ return Package.load(id.name, path, systemCache.sources);
});
}
@@ -157,16 +157,6 @@ class Source {
void validateDescription(description, [bool fromLockFile=false]) {}
/**
- * Returns a human-friendly name for the package described by [description].
- * This method should be light-weight. It doesn't need to validate that the
- * given package exists.
- *
- * The package name should be lower-case and suitable for use in a filename.
- * It may contain forward slashes.
- */
- String packageName(description) => description;
-
- /**
* Returns whether or not [description1] describes the same package as
* [description2] for this source. This method should be light-weight. It
* doesn't need to validate that either package exists.
« no previous file with comments | « utils/pub/pubspec.dart ('k') | utils/pub/system_cache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698