| Index: runtime/lib/isolate_patch.dart
|
| diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
|
| index 144e9c979444e107f3d5cf44809aea6affff44c8..a4daac25455b6c0475f14869c3c94e981f941cb9 100644
|
| --- a/runtime/lib/isolate_patch.dart
|
| +++ b/runtime/lib/isolate_patch.dart
|
| @@ -34,8 +34,8 @@ class _IsolateSink implements IsolateSink {
|
| _port.send(message);
|
| }
|
|
|
| - void addError(AsyncError errorEvent) {
|
| - throw new UnimplementedError("signalError on isolate streams");
|
| + void addError(Object errorEvent) {
|
| + throw new UnimplementedError("addError on isolate streams");
|
| }
|
|
|
| void close() {
|
|
|