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

Unified Diff: utils/pub/pubspec.dart

Issue 10534081: pub: treat a pubspec with just comments as empty (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | no next file » | 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 04c942e60887de8c34c4708704345e2b70cbf279..94b03f239f956998a28b7b0d99a84f54e7166efc 100644
--- a/utils/pub/pubspec.dart
+++ b/utils/pub/pubspec.dart
@@ -42,6 +42,10 @@ class Pubspec {
if (contents.trim() == '') return new Pubspec.empty();
var parsedPubspec = loadYaml(contents);
+ if (parsedPubspec == null) {
nweiz 2012/07/16 19:34:02 Nit: we usually do single-line if statements when
+ // content just yaml comments
+ return new Pubspec.empty();
+ }
if (parsedPubspec is! Map) {
throw new FormatException('The pubspec must be a YAML mapping.');
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698