| Index: tests/lib/mirrors/reflected_type_test.dart
|
| diff --git a/tests/lib/mirrors/reflected_type_test.dart b/tests/lib/mirrors/reflected_type_test.dart
|
| index a574434f1b2c273f2939fb5814e3139a0c5b0a77..b3a98f947a6a081414ce3c233355397183fe1c19 100644
|
| --- a/tests/lib/mirrors/reflected_type_test.dart
|
| +++ b/tests/lib/mirrors/reflected_type_test.dart
|
| @@ -62,11 +62,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);
|
|
|