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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/elements/elements.dart

Issue 19405002: Implement reflecting on static fields. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix a long line. Created 7 years, 5 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 | « no previous file | dart/sdk/lib/_internal/compiler/implementation/elements/modelx.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/_internal/compiler/implementation/elements/elements.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/elements/elements.dart b/dart/sdk/lib/_internal/compiler/implementation/elements/elements.dart
index 51ffcfc1b7bc593802e25de4c693499527f68c32..f3673452db3675b68eb7ee105d094e7dcb457a1b 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/elements/elements.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/elements/elements.dart
@@ -883,6 +883,9 @@ abstract class ClassElement extends TypeDeclarationElement
void forEachInstanceField(void f(ClassElement enclosingClass, Element field),
{includeSuperAndInjectedMembers: false});
+ /// Similar to [forEachInstanceField] but visits static fields.
+ void forEachStaticField(void f(ClassElement enclosingClass, Element field));
+
void forEachBackendMember(void f(Element member));
}
« no previous file with comments | « no previous file | dart/sdk/lib/_internal/compiler/implementation/elements/modelx.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698