| Index: tests/lib_strong/mirrors/regress_26187_test.dart
|
| diff --git a/tests/lib_strong/mirrors/regress_26187_test.dart b/tests/lib_strong/mirrors/regress_26187_test.dart
|
| index 1d99362e04433e11c9f3f6c1918c86f604e43e28..6c381c78dfd4605d2e872ca8e925f8e7e80b078e 100644
|
| --- a/tests/lib_strong/mirrors/regress_26187_test.dart
|
| +++ b/tests/lib_strong/mirrors/regress_26187_test.dart
|
| @@ -18,8 +18,12 @@ typedef void f(@A() int, String);
|
| typedef void g(@B() int, String);
|
|
|
| main() {
|
| - ParameterMirror fParamMirror = (reflectType(f) as TypedefMirror).referent.parameters[0];
|
| - ParameterMirror gParamMirror = (reflectType(g) as TypedefMirror).referent.parameters[0];
|
| - Expect.equals('.A', MirrorSystem.getName(fParamMirror.metadata[0].type.qualifiedName));
|
| - Expect.equals('.B', MirrorSystem.getName(gParamMirror.metadata[0].type.qualifiedName));
|
| + ParameterMirror fParamMirror =
|
| + (reflectType(f) as TypedefMirror).referent.parameters[0];
|
| + ParameterMirror gParamMirror =
|
| + (reflectType(g) as TypedefMirror).referent.parameters[0];
|
| + Expect.equals(
|
| + '.A', MirrorSystem.getName(fParamMirror.metadata[0].type.qualifiedName));
|
| + Expect.equals(
|
| + '.B', MirrorSystem.getName(gParamMirror.metadata[0].type.qualifiedName));
|
| }
|
|
|