Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(582)

Unified Diff: sdk/lib/convert/json.dart

Issue 1393033002: Move super initializers to end of list (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/io/http_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/json.dart
diff --git a/sdk/lib/convert/json.dart b/sdk/lib/convert/json.dart
index 08eb79708b7208cf3b0f60c258dbbbbcb0206602..ace76c24c5f4f416c0f7149e9c85da5823335b41 100644
--- a/sdk/lib/convert/json.dart
+++ b/sdk/lib/convert/json.dart
@@ -903,9 +903,9 @@ 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.
« no previous file with comments | « no previous file | sdk/lib/io/http_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698