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

Unified Diff: tests/lib/mirrors/generic_superclass_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
Index: tests/lib/mirrors/generic_superclass_test.dart
diff --git a/tests/lib/mirrors/generic_superclass_test.dart b/tests/lib/mirrors/generic_superclass_test.dart
index 9c4ea678a4350fcc7d924b2fd62ee465e2705a80..a0a7e03ba5f2d2376cbbada8242a2168fb6a7533 100644
--- a/tests/lib/mirrors/generic_superclass_test.dart
+++ b/tests/lib/mirrors/generic_superclass_test.dart
@@ -5,26 +5,17 @@
import 'package:expect/expect.dart';
import 'dart:mirrors';
-class A<T> {}
-
-class B extends A<U> {}
+class A<T> {}
+class B extends A<U>{}
class C extends A<C> {}
-
class D<T> extends A<T> {}
-
-class E<X, Y> extends G<H<Y>> {}
-
+class E<X,Y> extends G<H<Y>> {}
class F<X> implements A<X> {}
-
-class FF<X, Y> implements G<H<Y>> {}
-
+class FF<X,Y> implements G<H<Y>> {}
class G<T> {}
-
class H<T> {}
-
class U {}
-
class R {}
void testOriginals() {
@@ -75,9 +66,9 @@ void testInstances() {
ClassMirror b = reflect(new B()).type;
ClassMirror c = reflect(new C()).type;
ClassMirror d = reflect(new D<U>()).type;
- ClassMirror e = reflect(new E<U, R>()).type;
- ClassMirror e0 = reflect(new E<U, H<R>>()).type;
- ClassMirror ff = reflect(new FF<U, R>()).type;
+ ClassMirror e = reflect(new E<U,R>()).type;
+ ClassMirror e0 = reflect(new E<U,H<R>>()).type;
+ ClassMirror ff = reflect(new FF<U,R>()).type;
ClassMirror f = reflect(new F<U>()).type;
ClassMirror u = reflect(new U()).type;
ClassMirror r = reflect(new R()).type;
@@ -126,4 +117,4 @@ main() {
testOriginals();
testInstances();
testObject();
-}
+}
« no previous file with comments | « tests/lib/mirrors/generic_interface_test.dart ('k') | tests/lib/mirrors/generics_double_substitution_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698