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

Unified Diff: lib/isolate_runner.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_runner.dart
diff --git a/lib/isolaterunner.dart b/lib/isolate_runner.dart
similarity index 98%
rename from lib/isolaterunner.dart
rename to lib/isolate_runner.dart
index 795a10f617bc56c82554485f840246eca52cd2ab..ea2a80be13647dcc7e0af1bb585ed02466dbc8c2 100644
--- a/lib/isolaterunner.dart
+++ b/lib/isolate_runner.dart
@@ -2,13 +2,14 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library dart.pkg.isolate.isolaterunner;
+library isolate.isolate_runner;
import "dart:isolate";
import "dart:async";
Lasse Reichstein Nielsen 2015/03/24 10:35:38 If you are reordering imports, put async before is
kevmoo 2015/03/24 13:21:19 Done.
-import "runner.dart";
-import "ports.dart";
-import "src/lists.dart";
+
+import 'ports.dart';
+import 'runner.dart';
+import 'src/lists.dart';
// Command tags. Shared between IsolateRunner and IsolateRunnerRemote.
const int _SHUTDOWN = 0;
@@ -133,7 +134,6 @@ class IsolateRunner implements Runner {
}
static bool _kTrue(_) => true;
- static bool _kFalse() => false;
/// Pauses the isolate.
///

Powered by Google App Engine
This is Rietveld 408576698