Index: tests/lib/mirrors/lazy_static_test.dart |
=================================================================== |
--- tests/lib/mirrors/lazy_static_test.dart (revision 30028) |
+++ tests/lib/mirrors/lazy_static_test.dart (working copy) |
@@ -19,7 +19,7 @@ |
void main() { |
expect('Variable(s(hello) in s(Foo), static)', |
- reflectClass(Foo).declarations[#hello]); |
+ reflectClass(Foo).members[#hello]); |
var reflectee = reflectClass(Foo).getField(#hello).reflectee; |
Expect.stringEquals('a, c', reflectee.keys.join(', ')); |
// Call the lazy getter twice as different things probably happen in the |