| Index: sdk/lib/_internal/compiler/implementation/elements/elements.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/elements/elements.dart b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
|
| index 6aa85be867bfca46cc26813520b3febe90fd5097..c09dfb3a7535e6af2016e4c8e1111c6d8b87e958 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/elements/elements.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
|
| @@ -882,11 +882,11 @@ abstract class ClassElement extends TypeDeclarationElement
|
| [Element noMatch(Element)]);
|
|
|
| void forEachMember(void f(ClassElement enclosingClass, Element member),
|
| - {includeBackendMembers: false,
|
| - includeSuperAndInjectedMembers: false});
|
| + {bool includeBackendMembers: false,
|
| + bool includeSuperAndInjectedMembers: false});
|
|
|
| void forEachInstanceField(void f(ClassElement enclosingClass, Element field),
|
| - {includeSuperAndInjectedMembers: false});
|
| + {bool includeSuperAndInjectedMembers: false});
|
|
|
| /// Similar to [forEachInstanceField] but visits static fields.
|
| void forEachStaticField(void f(ClassElement enclosingClass, Element field));
|
|
|