| Index: tool/input_sdk/lib/convert/json.dart
|
| diff --git a/tool/input_sdk/lib/convert/json.dart b/tool/input_sdk/lib/convert/json.dart
|
| index fa0886d7f3b535a654ac7b02fc43bee83c73137f..083d26e3c35e0f824872a38c0c1dd635d71ad45b 100644
|
| --- a/tool/input_sdk/lib/convert/json.dart
|
| +++ b/tool/input_sdk/lib/convert/json.dart
|
| @@ -871,9 +871,10 @@ class _JsonUtf8Stringifier extends _JsonStringifier {
|
| int index = 0;
|
|
|
| _JsonUtf8Stringifier(toEncodable, int bufferSize, this.addChunk)
|
| - : super(toEncodable),
|
| - this.bufferSize = bufferSize,
|
| - buffer = new Uint8List(bufferSize);
|
| + : this.bufferSize = bufferSize,
|
| + buffer = new Uint8List(bufferSize),
|
| + super(toEncodable)
|
| + ;
|
|
|
| /**
|
| * Convert [object] to UTF-8 encoded JSON.
|
|
|