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