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

Unified Diff: tests/isolate/spawn_uri_child_isolate.dart

Issue 27215002: Very simple version of Isolates. (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 | « tests/isolate/spawn_function_test.dart ('k') | tests/isolate/spawn_uri_multi_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/spawn_uri_child_isolate.dart
diff --git a/tests/isolate/spawn_uri_child_isolate.dart b/tests/isolate/spawn_uri_child_isolate.dart
index 9e5fc93bffca7f7d74621a844b281edb74d07dc8..57f1dde7a64d86396ead690dc340db773f559595 100644
--- a/tests/isolate/spawn_uri_child_isolate.dart
+++ b/tests/isolate/spawn_uri_child_isolate.dart
@@ -6,6 +6,7 @@
library SpawnUriChildIsolate;
import 'dart:isolate';
-void main() {
- port.receive((msg, reply) => reply.send('re: $msg'));
+void main(List<String> args, SendPort replyTo) {
+ var data = args[0];
+ replyTo.send('re: $data');
}
« no previous file with comments | « tests/isolate/spawn_function_test.dart ('k') | tests/isolate/spawn_uri_multi_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698