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

Unified Diff: sdk/lib/_internal/pub/lib/src/source/path.dart

Issue 34803006: Make pubspec.lock keep relative path if it is originally specified as relative in pubspec.yaml (iss… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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/source/path.dart
diff --git a/sdk/lib/_internal/pub/lib/src/source/path.dart b/sdk/lib/_internal/pub/lib/src/source/path.dart
index 2f7ccc303f4ce36e3f714c476b4794630ca8baa9..c4c2680e38e80eef2347b02eea545e98bba4eb14 100644
--- a/sdk/lib/_internal/pub/lib/src/source/path.dart
+++ b/sdk/lib/_internal/pub/lib/src/source/path.dart
@@ -94,7 +94,8 @@ class PathSource extends Source {
// local file system.
assert(containingPath != null);
- description = path.join(path.dirname(containingPath), description);
+ description = path.normalize(
+ path.join(path.dirname(containingPath), description));
}
return {
@@ -103,6 +104,16 @@ class PathSource extends Source {
};
}
+ /// Serializes path dependency's [description]. For the descriptions where
+ /// `relative` attribute is `true`, tries to make `path` relative to the
+ /// specified [rootPath].
+ dynamic serializeDescription(String rootPath, description) {
+ if (description['relative']) {
+ description['path'] = path.relative(description['path'], from: rootPath);
Bob Nystrom 2013/10/28 22:13:32 This modifies the map in place, which might cause
Anton Moiseev 2013/11/03 11:11:43 Good catch, thanks! Done.
+ }
+ return description;
+ }
+
/// Ensures that [description] is a valid path description. It must be a map,
/// with a "path" key containing a path that points to an existing directory.
/// Throws an [ApplicationException] if the path is invalid.

Powered by Google App Engine
This is Rietveld 408576698