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

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: nits 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
« no previous file with comments | « lib/isolate.dart ('k') | lib/isolaterunner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..2d1809513f47737f4b0d3fc6213a3cdf037834d8 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";
-import "runner.dart";
-import "ports.dart";
-import "src/lists.dart";
+import "dart:isolate";
+
+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.
///
« no previous file with comments | « lib/isolate.dart ('k') | lib/isolaterunner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698