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

Unified Diff: utils/pub/entrypoint.dart

Issue 11434118: Add validation infrastructure for "pub lish". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 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
« no previous file with comments | « utils/pub/command_lish.dart ('k') | utils/pub/pub.dart » ('j') | no next file with comments »
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 521f2614c4bdae4b88cf55fbc88be08a0a56c703..d3af1fa53f92055e85d854aeed926ee7909ad1ed 100644
--- a/utils/pub/entrypoint.dart
+++ b/utils/pub/entrypoint.dart
@@ -51,6 +51,12 @@ class Entrypoint {
Entrypoint(this.root, this.cache)
: _installs = new Map<PackageId, Future<PackageId>>();
+ /// Loads the entrypoint from a package at [rootDir].
+ static Future<Entrypoint> load(String rootDir, SystemCache cache) {
+ return Package.load(null, rootDir, cache.sources).transform((package) =>
+ new Entrypoint(package, cache));
+ }
+
/**
* The path to this "packages" directory.
*/
« no previous file with comments | « utils/pub/command_lish.dart ('k') | utils/pub/pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698