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

Unified Diff: utils/pub/package.dart

Issue 12092080: Validate packages against their SDK constraints. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up a bit. Created 7 years, 11 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: utils/pub/package.dart
diff --git a/utils/pub/package.dart b/utils/pub/package.dart
index f62e2becd0ffbda4ff69ee4a14c900e1a78a3cde..cb8c9d3a8c201676715552668746d230f4a25ded 100644
--- a/utils/pub/package.dart
+++ b/utils/pub/package.dart
@@ -56,7 +56,7 @@ class Package {
/// The ids of the packages that this package depends on. This is what is
/// specified in the pubspec when this package depends on another.
- Collection<PackageRef> get dependencies => pubspec.dependencies;
+ List<PackageRef> get dependencies => pubspec.dependencies;
/// Constructs a package with the given pubspec. The package will have no
/// directory associated with it.

Powered by Google App Engine
This is Rietveld 408576698