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

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: merge with generic interfaces and mixins 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
« no previous file with comments | « runtime/lib/mirrors_patch.dart ('k') | sdk/lib/_internal/lib/js_mirrors.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8f7957740565c24d138e2189bf76f2404c194c1c..1576139df418491aaa0235e0149eaf92e22b51ef 100644
--- a/runtime/tests/vm/dart/isolate_mirror_local_test.dart
+++ b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
@@ -171,6 +171,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, '
« no previous file with comments | « runtime/lib/mirrors_patch.dart ('k') | sdk/lib/_internal/lib/js_mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698