Chromium Code Reviews

Unified Diff: tests/isolate/spawn_uri_nested_child2_vm_isolate.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update spawnUri description. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: tests/isolate/spawn_uri_nested_child2_vm_isolate.dart
diff --git a/tests/isolate/spawn_uri_nested_child2_vm_isolate.dart b/tests/isolate/spawn_uri_nested_child2_vm_isolate.dart
index 87efa5bad7eecf3c9eea7ba28cde20481a822dc2..47c6556436bb08775bf22753c21fcfa8e65333f2 100644
--- a/tests/isolate/spawn_uri_nested_child2_vm_isolate.dart
+++ b/tests/isolate/spawn_uri_nested_child2_vm_isolate.dart
@@ -6,6 +6,8 @@
library NestedSpawnUriChild2Library;
import 'dart:isolate';
-void main() {
- port.receive((msg, reply) => reply.send('re: $msg'));
+void main({message}) {
+ var data = message[0];
+ var replyTo = message[1];
+ replyTo.send('re: $data');
}

Powered by Google App Engine