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

Unified Diff: tests/lib/mirrors/generic_f_bounded_mixin_application_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/lib/mirrors/generic_f_bounded_mixin_application_test.dart
diff --git a/tests/lib/mirrors/generic_f_bounded_mixin_application_test.dart b/tests/lib/mirrors/generic_f_bounded_mixin_application_test.dart
index 2d0d0b2695b24f0b33e073c00b597c735ad2aefc..b34bd64d0f9c694e84652dbc4e5a7b87b879a567 100644
--- a/tests/lib/mirrors/generic_f_bounded_mixin_application_test.dart
+++ b/tests/lib/mirrors/generic_f_bounded_mixin_application_test.dart
@@ -12,48 +12,54 @@ import 'package:expect/expect.dart';
import 'generics_helper.dart';
class Collection<C> {}
+
class Serializable<S> {}
-class OrderedCollection<V>
- extends Collection<V>
+class OrderedCollection<V> extends Collection<V>
with Serializable<OrderedCollection<V>> {}
-class AbstractOrderedCollection<W>
- = Collection<W>
+class AbstractOrderedCollection<W> = Collection<W>
with Serializable<AbstractOrderedCollection<W>>;
-class CustomOrderedCollection<Z>
- extends AbstractOrderedCollection<Z> {}
+class CustomOrderedCollection<Z> extends AbstractOrderedCollection<Z> {}
-class OrderedIntegerCollection
- extends OrderedCollection<int> {}
+class OrderedIntegerCollection extends OrderedCollection<int> {}
-class CustomOrderedIntegerCollection
- extends CustomOrderedCollection<int> {}
+class CustomOrderedIntegerCollection extends CustomOrderedCollection<int> {}
class Serializer<R extends Serializable<R>> {}
+
class CollectionSerializer extends Serializer<Collection> {}
+
class OrderedCollectionSerializer extends Serializer<OrderedCollection> {}
main() {
ClassMirror collectionDecl = reflectClass(Collection);
ClassMirror serializableDecl = reflectClass(Serializable);
ClassMirror orderedCollectionDecl = reflectClass(OrderedCollection);
- ClassMirror abstractOrderedCollectionDecl = reflectClass(AbstractOrderedCollection);
- ClassMirror customOrderedCollectionDecl = reflectClass(CustomOrderedCollection);
+ ClassMirror abstractOrderedCollectionDecl =
+ reflectClass(AbstractOrderedCollection);
+ ClassMirror customOrderedCollectionDecl =
+ reflectClass(CustomOrderedCollection);
ClassMirror orderedIntegerCollection = reflectClass(OrderedIntegerCollection);
- ClassMirror customOrderedIntegerCollection = reflectClass(CustomOrderedIntegerCollection);
+ ClassMirror customOrderedIntegerCollection =
+ reflectClass(CustomOrderedIntegerCollection);
ClassMirror serializerDecl = reflectClass(Serializer);
ClassMirror collectionSerializerDecl = reflectClass(CollectionSerializer);
- ClassMirror orderedCollectionSerializerDecl = reflectClass(OrderedCollectionSerializer);
+ ClassMirror orderedCollectionSerializerDecl =
+ reflectClass(OrderedCollectionSerializer);
ClassMirror orderedCollectionOfInt = orderedIntegerCollection.superclass;
- ClassMirror customOrderedCollectionOfInt = customOrderedIntegerCollection.superclass;
+ ClassMirror customOrderedCollectionOfInt =
+ customOrderedIntegerCollection.superclass;
ClassMirror serializerOfCollection = collectionSerializerDecl.superclass;
- ClassMirror serializerOfOrderedCollection = orderedCollectionSerializerDecl.superclass;
+ ClassMirror serializerOfOrderedCollection =
+ orderedCollectionSerializerDecl.superclass;
ClassMirror collectionOfDynamic = reflect(new Collection()).type;
- ClassMirror orderedCollectionOfDynamic = reflect(new OrderedCollection()).type;
- ClassMirror collectionWithSerializableOfOrderedCollection = orderedCollectionDecl.superclass;
+ ClassMirror orderedCollectionOfDynamic =
+ reflect(new OrderedCollection()).type;
+ ClassMirror collectionWithSerializableOfOrderedCollection =
+ orderedCollectionDecl.superclass;
Expect.isTrue(collectionDecl.isOriginalDeclaration);
Expect.isTrue(serializableDecl.isOriginalDeclaration);
@@ -71,7 +77,8 @@ main() {
Expect.isFalse(serializerOfCollection.isOriginalDeclaration);
Expect.isFalse(serializerOfOrderedCollection.isOriginalDeclaration);
Expect.isFalse(collectionOfDynamic.isOriginalDeclaration);
- Expect.isFalse(collectionWithSerializableOfOrderedCollection.isOriginalDeclaration);
+ Expect.isFalse(
+ collectionWithSerializableOfOrderedCollection.isOriginalDeclaration);
TypeVariableMirror rFromSerializer = serializerDecl.typeVariables.single;
ClassMirror serializableOfR = rFromSerializer.upperBound;

Powered by Google App Engine
This is Rietveld 408576698