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

Unified Diff: utils/pub/pubspec.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/pub.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/pubspec.dart
diff --git a/utils/pub/pubspec.dart b/utils/pub/pubspec.dart
index 20f15a1d989b6953ed35bbcc0b16eeea5c7db9ef..1ba4d06482eee97652fa5372fbfba6aa9b422f9b 100644
--- a/utils/pub/pubspec.dart
+++ b/utils/pub/pubspec.dart
@@ -28,14 +28,21 @@ class Pubspec {
/**
* The packages this package depends on.
*/
- List<PackageRef> dependencies;
+ final List<PackageRef> dependencies;
- Pubspec(this.name, this.version, this.dependencies);
+ /// All pubspec fields. This includes the fields from which other properties
+ /// are derived.
+ final Map<String, Object> fields;
+
+ Pubspec(this.name, this.version, this.dependencies,
+ [Map<String, Object> fields])
+ : this.fields = fields == null ? {} : fields;
Pubspec.empty()
: name = null,
version = Version.none,
- dependencies = <PackageRef>[];
+ dependencies = <PackageRef>[],
+ fields = {};
/** Whether or not the pubspec has no contents. */
bool get isEmpty =>
@@ -126,7 +133,7 @@ class Pubspec {
}
}
- return new Pubspec(name, version, dependencies);
+ return new Pubspec(name, version, dependencies, parsedPubspec);
}
}
« no previous file with comments | « utils/pub/pub.dart ('k') | utils/pub/system_cache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698