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

Unified Diff: dart/pkg/polymer_expressions/lib/src/mirrors.dart

Issue 23455028: Mirrors overhaul. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r29550. 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 | « dart/pkg/polymer/test/unbind_test.dart ('k') | dart/pkg/serialization/lib/src/basic_rule.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/pkg/polymer_expressions/lib/src/mirrors.dart
diff --git a/dart/pkg/polymer_expressions/lib/src/mirrors.dart b/dart/pkg/polymer_expressions/lib/src/mirrors.dart
index 62cf2938a0f54362af8a923e37eff7940a10dea2..f46ee6ece767bba2284ea193c9dc2b9f52a2dc50 100644
--- a/dart/pkg/polymer_expressions/lib/src/mirrors.dart
+++ b/dart/pkg/polymer_expressions/lib/src/mirrors.dart
@@ -18,8 +18,8 @@ import 'dart:mirrors';
* noSuchMethod().
*/
Mirror getMemberMirror(ClassMirror classMirror, Symbol name) {
- if (classMirror.members.containsKey(name)) {
- return classMirror.members[name];
+ if (classMirror.declarations.containsKey(name)) {
+ return classMirror.declarations[name];
}
if (hasSuperclass(classMirror)) {
var mirror = getMemberMirror(classMirror.superclass, name);
« no previous file with comments | « dart/pkg/polymer/test/unbind_test.dart ('k') | dart/pkg/serialization/lib/src/basic_rule.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698