| 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..3907328ed75870d6315b5eff7a84d4f85b540541 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.
|
| + UNRESOLVED_SUPER_GETTER,
|
| + /// Read from a superclass getter and write to an unresolved setter.
|
| + UNRESOLVED_SUPER_SETTER,
|
| }
|
|
|
| /**
|
|
|