| Index: runtime/lib/isolate_patch.dart
|
| diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
|
| index c9c836b24947fc8283956db00c9d9e3aaea66ea2..ce68bf19fba299c642fbf9934bb915f7713b5481 100644
|
| --- a/runtime/lib/isolate_patch.dart
|
| +++ b/runtime/lib/isolate_patch.dart
|
| @@ -25,7 +25,10 @@ class _ReceivePortImpl extends Stream implements ReceivePort {
|
| { Function onError,
|
| void onDone(),
|
| bool cancelOnError }) {
|
| - return _controller.stream.listen(onData);
|
| + return _controller.stream.listen(onData,
|
| + onError: onError,
|
| + onDone: onDone,
|
| + cancelOnError: cancelOnError);
|
| }
|
|
|
| /**** Internal implementation details ****/
|
|
|