| Index: tests/lib/mirrors/mirrors_test.dart
|
| diff --git a/tests/lib/mirrors/mirrors_test.dart b/tests/lib/mirrors/mirrors_test.dart
|
| index b86acd694494ce52a809c4e127fed93709114c41..b0d1b8455078a88e1f2e078ec14087594258c0cb 100644
|
| --- a/tests/lib/mirrors/mirrors_test.dart
|
| +++ b/tests/lib/mirrors/mirrors_test.dart
|
| @@ -239,12 +239,12 @@ testNames(mirrors) {
|
| expect(classMirror.simpleName, equals(const Symbol('Class')));
|
| expect(classMirror.qualifiedName, equals(const Symbol('MirrorsTest.Class')));
|
|
|
| - if (!isDart2js) { // TODO(ahe): Implement this in dart2js.
|
| - TypeVariableMirror typeVariable = classMirror.typeVariables.single;
|
| - expect(typeVariable.simpleName, equals(const Symbol('T')));
|
| - expect(typeVariable.qualifiedName,
|
| - equals(const Symbol('MirrorsTest.Class.T')));
|
| + TypeVariableMirror typeVariable = classMirror.typeVariables.single;
|
| + expect(typeVariable.simpleName, equals(const Symbol('T')));
|
| + expect(typeVariable.qualifiedName,
|
| + equals(const Symbol('MirrorsTest.Class.T')));
|
|
|
| + if (!isDart2js) { // TODO(ahe): Implement this in dart2js.
|
| expect(typedefMirror.simpleName, equals(const Symbol('Typedef')));
|
| expect(typedefMirror.qualifiedName,
|
| equals(const Symbol('MirrorsTest.Typedef')));
|
|
|