| 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 5a3307035ac0f11c860a6f83b82c7474552bfca7..ff49e47db488637a0c1ba5fd30791cf114d97262 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart2js.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart2js.dart
|
| @@ -422,7 +422,7 @@ class EventSinkWrapper extends EventSink<String> {
|
|
|
| void add(String data) => onAdd(data);
|
|
|
| - void addError(error) => throw error;
|
| + void addError(error, [StackTrace stackTrace]) => throw error;
|
|
|
| void close() => onClose();
|
| }
|
|
|