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

Unified Diff: tests/standalone/package/sibling_isolate.dart

Issue 27215002: Very simple version of Isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address Anders' comment. 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
Index: tests/standalone/package/sibling_isolate.dart
diff --git a/tests/standalone/package/sibling_isolate.dart b/tests/standalone/package/sibling_isolate.dart
index 14b400dc90034442c9741afbe0161b70ba32b8d4..a2e8332ce2f166b4e7bee1fee933160e977c9db2 100644
--- a/tests/standalone/package/sibling_isolate.dart
+++ b/tests/standalone/package/sibling_isolate.dart
@@ -9,9 +9,7 @@ import 'package:shared.dart'as shared;
import 'dart:isolate';
// This file is spawned from package_isolate_test.dart
-main() {
+main(List<String args>, SendPort reply) {
shared.output = 'isolate';
- port.receive((msg, replyTo) {
- replyTo.send(shared.output);
- });
+ reply.send(shared.output);
}

Powered by Google App Engine
This is Rietveld 408576698