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

Unified Diff: tests/language_strong/super_first_constructor_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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: tests/language_strong/super_first_constructor_test.dart
diff --git a/tests/language_strong/super_first_constructor_test.dart b/tests/language_strong/super_first_constructor_test.dart
index e6cdee1be4cd3317b5147500a3099f825572c1f2..a28bb7ed6bb2cedb4001161bfad29171b04749ad 100644
--- a/tests/language_strong/super_first_constructor_test.dart
+++ b/tests/language_strong/super_first_constructor_test.dart
@@ -21,9 +21,13 @@ class Sub extends Super {
var subField;
// Test for a bug when super() is the first initializer.
- Sub.first() : super(), subField = [];
+ Sub.first()
+ : super(),
+ subField = [];
- Sub.last() : subField = [], super();
+ Sub.last()
+ : subField = [],
+ super();
}
main() {

Powered by Google App Engine
This is Rietveld 408576698