Chromium Code Reviews

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

Issue 63563003: - Reverting mirror changes. (Closed) Base URL: http://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.
Jump to:
View side-by-side diff with in-line comments
Index: tests/lib/mirrors/metadata_test.dart
===================================================================
--- tests/lib/mirrors/metadata_test.dart (revision 30026)
+++ tests/lib/mirrors/metadata_test.dart (working copy)
@@ -54,17 +54,17 @@
ClassMirror myClassMirror = reflectClass(MyClass);
checkMetadata(myClassMirror, [symbol, string]);
LibraryMirror lib = mirrors.findLibrary(#test.metadata_test);
- MethodMirror function = lib.functions[#main];
+ MethodMirror function = lib.declarations[#main];
checkMetadata(function, [symbol, string, symbol]);
- MethodMirror method = myClassMirror.methods[#myMethod];
+ MethodMirror method = myClassMirror.declarations[#myMethod];
checkMetadata(method, [string, symbol, string]);
- method = myClassMirror.methods[#myOtherMethod];
+ method = myClassMirror.declarations[#myOtherMethod];
checkMetadata(method, []);
- VariableMirror xMirror = myClassMirror.variables[#x];
+ VariableMirror xMirror = myClassMirror.declarations[#x];
checkMetadata(xMirror, [hest, hest, symbol]);
- VariableMirror yMirror = myClassMirror.variables[#y];
+ VariableMirror yMirror = myClassMirror.declarations[#y];
checkMetadata(yMirror, []);
// TODO(ahe): Test local functions.
« no previous file with comments | « tests/lib/mirrors/metadata_constructed_constant_test.dart ('k') | tests/lib/mirrors/method_mirror_properties_test.dart » ('j') | no next file with comments »

Powered by Google App Engine