| Index: runtime/lib/convert_patch.dart
|
| diff --git a/runtime/lib/convert_patch.dart b/runtime/lib/convert_patch.dart
|
| index 3c50f2ac27b3e5333a8e0ae553606db16e2abaed..6d839699f004004fe54fe5e588ddd31d6ea0d48a 100644
|
| --- a/runtime/lib/convert_patch.dart
|
| +++ b/runtime/lib/convert_patch.dart
|
| @@ -39,14 +39,13 @@ patch class Utf8Decoder {
|
| }
|
| }
|
|
|
| -class _JsonUtf8Decoder extends
|
| - ChunkedConverter<List<int>, Object, List<int>, Object> {
|
| +class _JsonUtf8Decoder extends Converter<List<int>, Object> {
|
| final _Reviver _reviver;
|
| final bool _allowMalformed;
|
|
|
| _JsonUtf8Decoder(this._reviver, this._allowMalformed);
|
|
|
| - Object convert(List<int> input) {
|
| + dynamic convert(List<int> input) {
|
| var parser = _JsonUtf8DecoderSink._createParser(_reviver, _allowMalformed);
|
| parser.chunk = input;
|
| parser.chunkEnd = input.length;
|
|
|