Index: lib/compiler/implementation/elements/elements.dart |
=================================================================== |
--- lib/compiler/implementation/elements/elements.dart (revision 11297) |
+++ lib/compiler/implementation/elements/elements.dart (working copy) |
@@ -1303,7 +1303,7 @@ |
do { |
if (seen.contains(classElement)) return; |
seen.add(classElement); |
- for (Element element in classElement.localMembers) { |
+ for (Element element in classElement.localMembers.reverse()) { |
kasperl
2012/08/24 11:50:23
Add a comment that explain why the order is import
ngeoffray
2012/08/24 13:01:41
Done.
|
f(classElement, element); |
} |
if (includeBackendMembers) { |