| Index: sdk/lib/_internal/compiler/implementation/source_file_provider.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/source_file_provider.dart b/sdk/lib/_internal/compiler/implementation/source_file_provider.dart
|
| index 4640ff5051759fdd132de539b4bb1c7983f3eeab..ab11a776404a6150d46bc654d5f63fbe80fe1586 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/source_file_provider.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/source_file_provider.dart
|
| @@ -42,7 +42,7 @@ abstract class SourceFileProvider {
|
| }
|
| List<int> source;
|
| try {
|
| - source = readAll(uriPathToNative(resourceUri.path));
|
| + source = readAll(resourceUri.toFilePath());
|
| } on FileSystemException catch (ex) {
|
| return new Future.error(
|
| "Error reading '${relativize(cwd, resourceUri, isWindows)}' "
|
|
|