OLD | NEW |
(Empty) | |
| 1 |
| 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 |
| 4 // BSD-style license that can be found in the LICENSE file. |
| 5 |
| 6 library sibling_isolate; |
| 7 |
| 8 import 'package:shared.dart'as shared; |
| 9 import 'dart:isolate'; |
| 10 |
| 11 // This file is spawned from package_isolate_test.dart |
| 12 main() { |
| 13 shared.output = 'isolate'; |
| 14 port.receive((msg, replyTo) { |
| 15 replyTo.send(shared.output); |
| 16 }); |
| 17 } |
OLD | NEW |