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

Unified Diff: tests/language/if_null_behavior_test.dart

Issue 2770063002: Revert "Format all multitests" (Closed)
Patch Set: Created 3 years, 9 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 | « tests/language/if_null_assignment_static_test.dart ('k') | tests/language/illegal_initializer_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/if_null_behavior_test.dart
diff --git a/tests/language/if_null_behavior_test.dart b/tests/language/if_null_behavior_test.dart
index 206fc3a25d8112d60ece641fb42b2e16c3d5bc81..6ad6d5271cb13fa8a7618dbdb624aa23d38b5e3a 100644
--- a/tests/language/if_null_behavior_test.dart
+++ b/tests/language/if_null_behavior_test.dart
@@ -15,16 +15,12 @@ class A {
}
class B extends A {
- B(String v)
- : b = v,
- super(v);
+ B(String v) : b = v, super(v);
final String b;
}
class C extends A {
- C(String v)
- : c = v,
- super(v);
+ C(String v) : c = v, super(v);
final String c;
}
« no previous file with comments | « tests/language/if_null_assignment_static_test.dart ('k') | tests/language/illegal_initializer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698