| Index: tests/lib/mirrors/reflected_type_classes_test.dart
|
| diff --git a/tests/lib/mirrors/reflected_type_classes_test.dart b/tests/lib/mirrors/reflected_type_classes_test.dart
|
| index 4eeb3d8f29c412487853c9f2ddc45a9e0f5934d7..74eeb99da678bd3fa5be482c3edd30dad8b6b0ab 100644
|
| --- a/tests/lib/mirrors/reflected_type_classes_test.dart
|
| +++ b/tests/lib/mirrors/reflected_type_classes_test.dart
|
| @@ -40,11 +40,11 @@ main() {
|
|
|
| expectReflectedType(reflect(new A<num>()).type, new A<num>().runtimeType);
|
| expectReflectedType(reflect(new B<num>()).type.superclass, /// 02: static type warning
|
| - new A<dynamic>().runtimeType); /// 02: continued
|
| + new A<dynamic>().runtimeType); // /// 02: continued
|
| expectReflectedType(reflect(new C<num>()).type.superclass, /// 01: continued
|
| - new A<dynamic>().runtimeType); /// 01: continued
|
| + new A<dynamic>().runtimeType); // /// 01: continued
|
| expectReflectedType(reflect(new D<num>()).type.superclass, /// 03: static type warning
|
| - new A<int>().runtimeType); /// 03: continued
|
| + new A<int>().runtimeType); // /// 03: continued
|
| expectReflectedType(reflect(new E<num>()).type, new E<num>().runtimeType);
|
| expectReflectedType(reflect(new E<num>()).type.superclass,
|
| new A<num>().runtimeType);
|
|
|