| OLD | NEW |
| 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 } |
| OLD | NEW |