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

Unified Diff: tests/language_strong/fixed_type_variable_test.dart

Issue 2768073002: 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
Index: tests/language_strong/fixed_type_variable_test.dart
diff --git a/tests/language_strong/fixed_type_variable_test.dart b/tests/language_strong/fixed_type_variable_test.dart
index ddfecdfec4ec4d836cb584ab807fe5e0b9bcba9d..cbe9e2b60f57cb4852be18a43f7d1a1e787b0992 100644
--- a/tests/language_strong/fixed_type_variable_test.dart
+++ b/tests/language_strong/fixed_type_variable_test.dart
@@ -11,8 +11,7 @@ class A<T> {
B<T> createB() => new B<T>();
}
-class NumA extends A<num> {
-}
+class NumA extends A<num> {}
class B<T> {
T value;
@@ -22,14 +21,11 @@ class B<T> {
}
}
-class StringB extends B<String> {
-}
+class StringB extends B<String> {}
-class C<T> extends A<T> {
-}
+class C<T> extends A<T> {}
-class IntC extends C<int> {
-}
+class IntC extends C<int> {}
void main() {
testA(); //# 01: ok
@@ -84,4 +80,4 @@ void testIntC() {
instanceB.test(num, false);
instanceB.test(int, true);
instanceB.test(String, false);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698