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

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

Issue 84223002: Make the override warnings prettier. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 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
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 af752d674308146e3c0417f5957fafb1b77940b4..76892e1e6528a26573858f4073dff48b9382476a 100644
--- a/sdk/lib/_internal/pub/lib/src/source/path.dart
+++ b/sdk/lib/_internal/pub/lib/src/source/path.dart
@@ -113,6 +113,16 @@ class PathSource extends Source {
return description;
}
+ /// Converts a parsed relative path to its original relative form.
+ String formatDescription(String containingPath, description) {
+ var sourcePath = description["path"];
+ if (description["relative"]) {
+ sourcePath = path.relative(description['path'], from: containingPath);
+ }
+
+ return sourcePath;
+ }
+
/// Ensures that [description] is a valid path description and returns a
/// normalized path to the package.
///
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/source/hosted.dart ('k') | sdk/lib/_internal/pub/test/dependency_override_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698