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

Unified Diff: sdk/lib/_internal/pub/lib/src/package.dart

Issue 83173011: Make sure pub build/serve get at the right time: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 years 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: sdk/lib/_internal/pub/lib/src/package.dart
diff --git a/sdk/lib/_internal/pub/lib/src/package.dart b/sdk/lib/_internal/pub/lib/src/package.dart
index 6b31e566e16c50612544acc175ed0bc27245d4f9..e783221c4dc88a8d4d64b5c5820c55046f334c14 100644
--- a/sdk/lib/_internal/pub/lib/src/package.dart
+++ b/sdk/lib/_internal/pub/lib/src/package.dart
@@ -40,6 +40,25 @@ class Package {
/// The dependency overrides this package specifies in its pubspec.
List<PackageDep> get dependencyOverrides => pubspec.dependencyOverrides;
+ /// All immediate dependencies this package specifies.
+ ///
+ /// This includes regular, dev dependencies, and overrides.
+ Set<PackageDep> get immediateDependencies {
+ var deps = {};
+
+ addToMap(dep) {
+ deps[dep.name] = dep;
+ }
+
+ dependencies.forEach(addToMap);
+ devDependencies.forEach(addToMap);
+
+ // Make sure to add these last so they replace normal dependencies.
+ dependencyOverrides.forEach(addToMap);
+
+ return deps.values.toSet();
+ }
+
/// Returns the path to the README file at the root of the entrypoint, or null
/// if no README file is found. If multiple READMEs are found, this uses the
/// same conventions as pub.dartlang.org for choosing the primary one: the

Powered by Google App Engine
This is Rietveld 408576698