Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Unified Diff: lib/isolate.dart

Issue 1025293003: pkg/isolate: library renaming, removed unused method, fix creation of TimeoutException (Closed) Base URL: https://github.com/dart-lang/isolate.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lib/isolate.dart
diff --git a/lib/isolate.dart b/lib/isolate.dart
index b0a9a31bab2e40c1bcc7b433626b8e15764ea9ee..268a232eba9c9d07fa0a401d4a0eceb4f8f34ea1 100644
--- a/lib/isolate.dart
+++ b/lib/isolate.dart
@@ -3,10 +3,10 @@
// BSD-style license that can be found in the LICENSE file.
/// Utilities for working with isolates and isolate communication.
-library dart.pkg.isolate;
+library isolate;
Lasse Reichstein Nielsen 2015/03/24 10:35:38 Is this how package libraries are generally named?
kevmoo 2015/03/24 13:21:19 Yes!
-export "isolaterunner.dart";
-export "loadbalancer.dart";
-export "ports.dart";
-export "registry.dart";
-export "runner.dart";
+export 'isolate_runner.dart';
+export 'load_balancer.dart';
+export 'ports.dart';
+export 'registry.dart';
+export 'runner.dart';

Powered by Google App Engine
This is Rietveld 408576698