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

Unified Diff: pkg/analyzer/lib/file_system/memory_file_system.dart

Issue 449583003: Fix for opening SDK sources. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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: pkg/analyzer/lib/file_system/memory_file_system.dart
diff --git a/pkg/analyzer/lib/file_system/memory_file_system.dart b/pkg/analyzer/lib/file_system/memory_file_system.dart
index ee32ada5704a3ce21ea7ccae4e72d87cdb31ebb9..43abffa0c40252635db5ffc119700fcfdfa40cd4 100644
--- a/pkg/analyzer/lib/file_system/memory_file_system.dart
+++ b/pkg/analyzer/lib/file_system/memory_file_system.dart
@@ -256,6 +256,9 @@ class _MemoryFileSource implements Source {
Uri resolveRelativeUri(Uri relativeUri) {
return uri.resolveUri(relativeUri);
}
+
+ @override
+ String toString() => _file.toString();
}

Powered by Google App Engine
This is Rietveld 408576698