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

Unified Diff: sdk/lib/isolate/isolate.dart

Issue 40023002: Make dart2js Isolate.spawn work. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 2 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 | « sdk/lib/_internal/pub/lib/src/barback/load_transformers.dart ('k') | tests/isolate/illegal_msg_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/isolate/isolate.dart
diff --git a/sdk/lib/isolate/isolate.dart b/sdk/lib/isolate/isolate.dart
index 1ee77d736294fb267755cc0ee5f1ef5afb1ae9b5..5d7e2de111b9d0100f82cdad72468c1bc094a088 100644
--- a/sdk/lib/isolate/isolate.dart
+++ b/sdk/lib/isolate/isolate.dart
@@ -30,7 +30,8 @@ class Isolate {
final SendPort _controlPort;
- Isolate._fromControlPort(this._controlPort);
+ Isolate._fromControlPort(SendPort controlPort)
+ : this._controlPort = controlPort;
/**
* Creates and spawns an isolate that shares the same code as the current
@@ -98,7 +99,7 @@ abstract class SendPort {
* process). This is currently only supported by the dartvm. For now, the
* dart2js compiler only supports the restricted messages described above.
*
- * The second argument [replyTo] is deprecated.
+ * The second argument [replyTo] is deprecated and its value is ignored.
*/
void send(var message, [SendPort replyTo]);
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/load_transformers.dart ('k') | tests/isolate/illegal_msg_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698