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

Side by Side 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 unified diff | Download patch
OLDNEW
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;
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!
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';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698