| Index: runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| diff --git a/runtime/tests/vm/dart/isolate_mirror_local_test.dart b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| index b07be27c28113281bd8d3cc70270736ab9b80765..10e7bb5324002e2eccd8d5cc17471b7c60e8724b 100644
|
| --- a/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| +++ b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
|
| @@ -170,6 +170,19 @@ void testRootLibraryMirror(LibraryMirror lib_mirror) {
|
| // Check that the classes map is complete.
|
| keys = lib_mirror.classes.keys.map(MirrorSystem.getName).toList();
|
| sort(keys);
|
| + print(keys);
|
| + Expect.equals('['
|
| + 'GenericClass, '
|
| + 'MyClass, '
|
| + 'MyException, '
|
| + 'MyInterface, '
|
| + 'MySuperClass]',
|
| + '$keys');
|
| +
|
| + // Check that the types map is complete.
|
| + keys = lib_mirror.types.keys.map(MirrorSystem.getName).toList();
|
| + sort(keys);
|
| + print(keys);
|
| Expect.equals('['
|
| 'FuncType, '
|
| 'GenericClass, '
|
|
|