| 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));
|
| }
|
|
|
|
|