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

Unified Diff: test/generated_sdk/lib/convert/json.dart

Issue 1112403004: SDK fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Formatting fix Created 5 years, 8 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
Index: test/generated_sdk/lib/convert/json.dart
diff --git a/test/generated_sdk/lib/convert/json.dart b/test/generated_sdk/lib/convert/json.dart
index 3f3596762d5f9b7cfc439c8dd6329243bfe0c61e..e0e24214ddce0c276f3637a33e5d8cb9fe05ac8e 100644
--- a/test/generated_sdk/lib/convert/json.dart
+++ b/test/generated_sdk/lib/convert/json.dart
@@ -890,9 +890,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.

Powered by Google App Engine
This is Rietveld 408576698