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

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

Issue 26436004: Implement constructor kinds in the VM mirrors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: both_ 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..f544f8c2155016c542248c5874480b1e35f8e021 100644
--- a/runtime/tests/vm/dart/isolate_mirror_local_test.dart
+++ b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
@@ -252,11 +252,12 @@ void testRootLibraryMirror(LibraryMirror lib_mirror) {
func = cls_mirror.constructors[const Symbol('MyClass')];
Expect.isTrue(func is MethodMirror);
- Expect.equals('MyClass return(MyClass) constructor', buildMethodString(func));
+ Expect.equals('MyClass return(MyClass) constructor generative',
+ buildMethodString(func));
func = cls_mirror.constructors[const Symbol('MyClass.named')];
Expect.isTrue(func is MethodMirror);
- Expect.equals('MyClass.named return(MyClass) constructor',
+ Expect.equals('MyClass.named return(MyClass) constructor generative',
buildMethodString(func));
func = generic_cls_mirror.members[const Symbol('method')];

Powered by Google App Engine
This is Rietveld 408576698