Index: lib/compiler/implementation/elements/elements.dart |
diff --git a/lib/compiler/implementation/elements/elements.dart b/lib/compiler/implementation/elements/elements.dart |
index 61fe59aa980548d3547f7374c519d610b0ead379..2bbdb5dec18156266c5f76de091a708556bc818b 100644 |
--- a/lib/compiler/implementation/elements/elements.dart |
+++ b/lib/compiler/implementation/elements/elements.dart |
@@ -158,6 +158,7 @@ class Element implements Hashable { |
bool isTypedef() => kind === ElementKind.TYPEDEF; |
bool isTypeVariable() => kind === ElementKind.TYPE_VARIABLE; |
bool isField() => kind === ElementKind.FIELD; |
+ bool isAbstractField() => kind === ElementKind.ABSTRACT_FIELD; |
bool isGetter() => kind === ElementKind.GETTER; |
bool isSetter() => kind === ElementKind.SETTER; |
bool isAccessor() => isGetter() || isSetter(); |