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

Unified Diff: lib/isolate/isolate_api.dart

Issue 9691005: Implement spawnFunction from the new isolate api. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 | « no previous file | runtime/lib/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/isolate/isolate_api.dart
===================================================================
--- lib/isolate/isolate_api.dart (revision 5367)
+++ lib/isolate/isolate_api.dart (working copy)
@@ -2,6 +2,12 @@
// 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.
+class IsolateSpawnException implements Exception {
Siggi Cherem (dart-lang) 2012/03/13 23:00:14 (nit): move this to the bottom, so that the top of
+ const IsolateSpawnException(String this._s);
+ String toString() => "IsolateSpawnException: '$_s'";
+ final String _s;
+}
+
/**
* The initial [ReceivePort] available by default for this isolate. This
* [ReceivePort] is created automatically and it is commonly used to establish
« no previous file with comments | « no previous file | runtime/lib/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698