| Index: tests/lib/mirrors/equality_test.dart
|
| diff --git a/tests/lib/mirrors/equality_test.dart b/tests/lib/mirrors/equality_test.dart
|
| index 94c98561c342d7a69265028402d5e3fb61601fdd..26d1aac659100e1ae2d2ad42010998c88b20dc72 100644
|
| --- a/tests/lib/mirrors/equality_test.dart
|
| +++ b/tests/lib/mirrors/equality_test.dart
|
| @@ -139,9 +139,9 @@ main() {
|
| 'thisLibrary.variables[#somePredicate].type' /// 02: ok
|
| : thisLibrary.variables[#somePredicate].type}, /// 02: ok
|
|
|
| - {'reflectType(Predicate).referent' : reflectType(Predicate).referent, /// 02: ok
|
| + {'reflectType(Predicate).referent' : (reflectType(Predicate) as TypedefMirror).referent, /// 02: ok
|
| 'thisLibrary.variables[#somePredicate].type.referent' /// 02: ok
|
| - : thisLibrary.variables[#somePredicate].type.referent}, /// 02: ok
|
| + : (thisLibrary.variables[#somePredicate].type as TypedefMirror).referent}, /// 02: ok
|
|
|
| {'reflectClass(A).typeVariables.single' /// 02: ok
|
| : reflectClass(A).typeVariables.single, /// 02: ok
|
|
|