Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(656)

Unified Diff: runtime/tests/vm/dart/isolate_mirror_local_test.dart

Issue 24005002: Make TypedefMirror a direct descendant of TypeMirror. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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, '

Powered by Google App Engine
This is Rietveld 408576698