OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library error_at_spawnuri; |
| 6 |
| 7 import "dart:isolate"; |
| 8 import "dart:async"; |
| 9 import "package:async_helper/async_helper.dart"; |
| 10 import "package:expect/expect.dart"; |
| 11 |
| 12 main(){ |
| 13 asyncStart(); |
| 14 |
| 15 // Capture errors from other isolate as raw messages. |
| 16 RawReceivePort errorPort = new RawReceivePort(); |
| 17 errorPort.handler = (message) { |
| 18 String error = message[0]; |
| 19 String stack = message[1]; |
| 20 Expect.equals(new ArgumentError("fast error").toString(), "$error"); |
| 21 errorPort.close(); |
| 22 asyncEnd(); |
| 23 }; |
| 24 |
| 25 Isolate.spawnUri(Uri.parse("error_at_spawnuri_iso.dart"), [], |
| 26 null, |
| 27 // Setup handler as part of spawn. |
| 28 errorsAreFatal: false, |
| 29 onError: errorPort.sendPort); |
| 30 } |
OLD | NEW |