| Index: sdk/lib/_internal/lib/async_patch.dart
|
| diff --git a/sdk/lib/_internal/lib/async_patch.dart b/sdk/lib/_internal/lib/async_patch.dart
|
| index 07b1cd20fc4b7776cd91603f62fb1ca311ca055f..8d6bb2639ec86d42d01c8aec9eb51ff02a66832e 100644
|
| --- a/sdk/lib/_internal/lib/async_patch.dart
|
| +++ b/sdk/lib/_internal/lib/async_patch.dart
|
| @@ -35,7 +35,7 @@ patch class DeferredLibrary {
|
| }
|
|
|
| // TODO(ahe): This should not only apply to this isolate.
|
| -final _loadedLibraries = <String, Completer<bool>>{};
|
| +final Map<String, Future<bool>> _loadedLibraries = <String, Future<bool>>{};
|
|
|
| Future<bool> _load(String libraryName, String uri) {
|
| // TODO(ahe): Validate libraryName. Kasper points out that you want
|
|
|