| Index: lib/compiler/implementation/elements/elements.dart
|
| diff --git a/lib/compiler/implementation/elements/elements.dart b/lib/compiler/implementation/elements/elements.dart
|
| index 65b83b18441c1c3db755b9d21e3bad6899d48c81..f47f30a2ee7e1053411d32fd231d9edf30d7565c 100644
|
| --- a/lib/compiler/implementation/elements/elements.dart
|
| +++ b/lib/compiler/implementation/elements/elements.dart
|
| @@ -118,6 +118,7 @@ class Element implements Hashable {
|
| }
|
|
|
| bool isFunction() => kind === ElementKind.FUNCTION;
|
| + bool isClosure() => false;
|
| bool isMember() =>
|
| enclosingElement !== null && enclosingElement.kind === ElementKind.CLASS;
|
| bool isInstanceMember() => false;
|
|
|