Chromium Code Reviews| Index: pkg/compiler/lib/src/resolution/access_semantics.dart |
| diff --git a/pkg/compiler/lib/src/resolution/access_semantics.dart b/pkg/compiler/lib/src/resolution/access_semantics.dart |
| index ecd16c0f8d938033c3db285adce90d73c0051609..527a70a684e0a32364d957d9de749287108ab915 100644 |
| --- a/pkg/compiler/lib/src/resolution/access_semantics.dart |
| +++ b/pkg/compiler/lib/src/resolution/access_semantics.dart |
| @@ -143,6 +143,11 @@ enum CompoundAccessKind { |
| SUPER_METHOD_SETTER, |
| /// Read from a superclass getter and write to a superclass field. |
| SUPER_GETTER_FIELD, |
| + |
| + /// Read from a superclass where the getter (and maybe setter) is unresolved. |
| + SUPER_UNRESOLVED_GETTER, |
|
karlklose
2015/05/11 10:38:55
'UNRESOLVED_SUPER_GETTER'?
Johnni Winther
2015/05/11 13:04:28
Done.
|
| + /// Read from a superclass getter and write to an unresolved setter. |
| + SUPER_UNRESOLVED_SETTER, |
| } |
| /** |