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

Unified Diff: utils/pub/entrypoint.dart

Issue 12171002: Tweak SDK constraint checking a bit. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « no previous file | utils/pub/git_source.dart » ('j') | utils/pub/git_source.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/entrypoint.dart
diff --git a/utils/pub/entrypoint.dart b/utils/pub/entrypoint.dart
index 7a940d41ceb4a3b7cdd2ade8f6560b3fa318c820..eb260fcedeb3fe4505dee56e477c55444cb0cce6 100644
--- a/utils/pub/entrypoint.dart
+++ b/utils/pub/entrypoint.dart
@@ -9,6 +9,7 @@ import 'io.dart';
import 'lock_file.dart';
import 'log.dart' as log;
import 'package.dart';
+import 'pubspec.dart';
import 'sdk.dart' as sdk;
import 'system_cache.dart';
import 'utils.dart';
@@ -143,16 +144,16 @@ class Entrypoint {
/// Traverses the root's package dependency graph and loads each of the
/// reached packages. This should only be called after the lockfile has been
/// successfully generated.
- Future<List<Package>> walkDependencies() {
+ Future<List<Pubspec>> walkDependencies() {
return loadLockFile().then((lockFile) {
- var group = new FutureGroup<Package>();
+ var group = new FutureGroup<Pubspec>();
var visited = new Set<String>();
// Include the root package in the results.
- group.add(new Future.immediate(root));
+ group.add(new Future.immediate(root.pubspec));
- visitPackage(Package package) {
- for (var ref in package.dependencies) {
+ visitPackage(Pubspec pubspec) {
+ for (var ref in pubspec.dependencies) {
if (visited.contains(ref.name)) continue;
// Look up the concrete version.
@@ -163,10 +164,10 @@ class Entrypoint {
group.add(future.then(visitPackage));
}
- return package;
+ return pubspec;
}
- visitPackage(root);
+ visitPackage(root.pubspec);
return group.future;
});
}
@@ -175,13 +176,13 @@ class Entrypoint {
/// of every package in the dependency graph. If a package's constraint does
/// not match, prints an error.
Future validateSdkConstraints() {
- return walkDependencies().then((packages) {
+ return walkDependencies().then((pubspecs) {
var errors = [];
- for (var package in packages) {
- var sdkConstraint = package.pubspec.environment.sdkVersion;
+ for (var pubspec in pubspecs) {
+ var sdkConstraint = pubspec.environment.sdkVersion;
if (!sdkConstraint.allows(sdk.version)) {
- errors.add("- '${package.name}' requires ${sdkConstraint}");
+ errors.add("- '${pubspec.name}' requires ${sdkConstraint}");
}
}
« no previous file with comments | « no previous file | utils/pub/git_source.dart » ('j') | utils/pub/git_source.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698