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

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

Issue 444293002: Fixes for the 'pub' bot and 'analysis_server' on Windows. (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 39430d8dc4180f08eff9459a1f38ffbbac6fccbb..69e10442e0a8d803fcd36f5b0210f775b47509a0 100644
--- a/pkg/analyzer/lib/file_system/memory_file_system.dart
+++ b/pkg/analyzer/lib/file_system/memory_file_system.dart
@@ -186,7 +186,7 @@ class _MemoryFile extends _MemoryResource implements File {
@override
Source createSource([Uri uri]) {
if (uri == null) {
- uri = toUri(path);
+ uri = posix.toUri(path);
}
return new _MemoryFileSource(this, uri);
}

Powered by Google App Engine
This is Rietveld 408576698