| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /// Utilities for working with isolates and isolate communication. | 5 /// Utilities for working with isolates and isolate communication. |
| 6 library dart.pkg.isolate; | 6 library isolate; |
| 7 | 7 |
| 8 export "isolaterunner.dart"; | 8 export 'isolate_runner.dart'; |
| 9 export "loadbalancer.dart"; | 9 export 'load_balancer.dart'; |
| 10 export "ports.dart"; | 10 export 'ports.dart'; |
| 11 export "registry.dart"; | 11 export 'registry.dart'; |
| 12 export "runner.dart"; | 12 export 'runner.dart'; |
| OLD | NEW |