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

Unified Diff: tests/lib/mirrors/reflect_runtime_type_test.dart

Issue 63063002: Remove implementations of mirror methods not in the API from the VM. Update tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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: tests/lib/mirrors/reflect_runtime_type_test.dart
diff --git a/tests/lib/mirrors/reflect_runtime_type_test.dart b/tests/lib/mirrors/reflect_runtime_type_test.dart
index c766c2d2f2a5a17994e4135502f3b29d8ab781fb..965d13f10756a10991e3ed143d29a150d57b9265 100644
--- a/tests/lib/mirrors/reflect_runtime_type_test.dart
+++ b/tests/lib/mirrors/reflect_runtime_type_test.dart
@@ -20,5 +20,6 @@ main() {
print(field);
}
-Iterable<VariableMirror> publicFields(ClassMirror mirror) =>
- mirror.variables.values.where((x) => !(x.isPrivate || x.isStatic));
+publicFields(ClassMirror mirror) =>
+ mirror.declarations.values.where(
+ (x) => x is VariableMirror && !(x.isPrivate || x.isStatic));
Ivan Posva 2013/11/06 21:20:06 TAB
rmacnak 2013/11/06 22:30:29 Done.

Powered by Google App Engine
This is Rietveld 408576698