| Index: lib/registry.dart
|
| diff --git a/lib/registry.dart b/lib/registry.dart
|
| index 6b9448c775d673e6f728f94ed54cf692ba234fbe..ddc801adba0313cdfe4fd3cbf777586a8794266e 100644
|
| --- a/lib/registry.dart
|
| +++ b/lib/registry.dart
|
| @@ -3,13 +3,14 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| /// An isolate-compatible object registry and lookup service.
|
| -library dart.pkg.isolate.registry;
|
| +library isolate.registry;
|
|
|
| -import "dart:async" show Future, Completer, TimeoutException;
|
| -import "dart:isolate" show RawReceivePort, SendPort, Capability;
|
| -import "dart:collection" show HashMap, HashSet;
|
| -import "ports.dart";
|
| -import "src/lists.dart";
|
| +import 'dart:async' show Future, Completer, TimeoutException;
|
| +import 'dart:collection' show HashMap, HashSet;
|
| +import 'dart:isolate' show RawReceivePort, SendPort, Capability;
|
| +
|
| +import 'ports.dart';
|
| +import 'src/lists.dart';
|
|
|
| // Command tags.
|
| const int _ADD = 0;
|
|
|