| Index: runtime/bin/string_stream.dart
|
| diff --git a/runtime/bin/string_stream.dart b/runtime/bin/string_stream.dart
|
| index d5ca79107d9ee8f340f4c1918b88443d9663827a..4352634817040268cb2f48d4b6cae1a316fd4ec9 100644
|
| --- a/runtime/bin/string_stream.dart
|
| +++ b/runtime/bin/string_stream.dart
|
| @@ -275,6 +275,10 @@ class _StringInputStream implements StringInputStream {
|
| _clientCloseHandler = callback;
|
| }
|
|
|
| + void set errorHandler(void callback()) {
|
| + _input.errorHandler = callback;
|
| + }
|
| +
|
| void _dataHandler() {
|
| _readData();
|
| if (!_decoder.isEmpty() && _clientDataHandler !== null) {
|
|
|