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

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

Issue 302313007: Attach source range information to parsed YAML nodes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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
Index: sdk/lib/_internal/pub/lib/src/pubspec.dart
diff --git a/sdk/lib/_internal/pub/lib/src/pubspec.dart b/sdk/lib/_internal/pub/lib/src/pubspec.dart
index 9a4d3e34930a1b091f4cb0a2026d4b01cc385fe0..d24e6ff83a3d9a366b39c6cb72099a9a64c66c4a 100644
--- a/sdk/lib/_internal/pub/lib/src/pubspec.dart
+++ b/sdk/lib/_internal/pub/lib/src/pubspec.dart
@@ -357,6 +357,7 @@ class Pubspec {
sourceName = _sources.defaultSource.name;
versionConstraint = _parseVersionConstraint(spec, "$field.$name");
} else if (spec is Map) {
+ spec = new Map.from(spec);
Bob Nystrom 2014/06/03 00:33:14 Document this.
nweiz 2014/06/03 02:03:21 Done.
if (spec.containsKey('version')) {
versionConstraint = _parseVersionConstraint(spec.remove('version'),
"$field.$name.version");
« sdk/lib/_internal/pub/lib/src/barback.dart ('K') | « sdk/lib/_internal/pub/lib/src/barback.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698