| Index: sdk/lib/_internal/compiler/implementation/dart2js.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/dart2js.dart b/sdk/lib/_internal/compiler/implementation/dart2js.dart
|
| index d1f08f9f0850cf2913e0b2260f4adbbcf293c954..4031bebc4973c57395f38233308c7ffc687e20e1 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart2js.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart2js.dart
|
| @@ -344,7 +344,7 @@ class CountingSink implements EventSink<String> {
|
| count += value.length;
|
| }
|
|
|
| - void addError(AsyncError error) { sink.addError(error); }
|
| + void addError(Object error) { sink.addError(error); }
|
|
|
| void close() { sink.close(); }
|
| }
|
|
|