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

Side by Side 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 comments. Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 5
6 library sibling_isolate; 6 library sibling_isolate;
7 7
8 import 'package:shared.dart'as shared; 8 import 'package:shared.dart'as shared;
9 import 'dart:isolate'; 9 import 'dart:isolate';
10 10
11 // This file is spawned from package_isolate_test.dart 11 // This file is spawned from package_isolate_test.dart
12 main() { 12 main(List<String args>, SendPort reply) {
13 shared.output = 'isolate'; 13 shared.output = 'isolate';
14 port.receive((msg, replyTo) { 14 reply.send(shared.output);
15 replyTo.send(shared.output);
16 });
17 } 15 }
OLDNEW
« no previous file with comments | « tests/standalone/package/package_isolate_test.dart ('k') | tests/standalone/package/test_folder/folder_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698