| Index: pkg/analyzer/lib/file_system/file_system.dart
|
| diff --git a/pkg/analyzer/lib/file_system/file_system.dart b/pkg/analyzer/lib/file_system/file_system.dart
|
| index 50e2cbd27205c62d856b550282b9b6af93a3218e..58da59b1257413046b737d80986ea2bd27bf4113 100644
|
| --- a/pkg/analyzer/lib/file_system/file_system.dart
|
| +++ b/pkg/analyzer/lib/file_system/file_system.dart
|
| @@ -130,7 +130,7 @@ class ResourceUriResolver extends UriResolver {
|
| if (!_isFileUri(uri)) {
|
| return null;
|
| }
|
| - Resource resource = _provider.getResource(uri.path);
|
| + Resource resource = _provider.getResource(fromUri(uri));
|
| if (resource is File) {
|
| return resource.createSource(uri);
|
| }
|
|
|