| Index: pkg/analyzer/lib/src/summary/idl.dart
|
| diff --git a/pkg/analyzer/lib/src/summary/idl.dart b/pkg/analyzer/lib/src/summary/idl.dart
|
| index 0df5ab32b291e463acbf495020251c99478345fb..edac295559cb5e03ccc46061007803ba45a49274 100644
|
| --- a/pkg/analyzer/lib/src/summary/idl.dart
|
| +++ b/pkg/analyzer/lib/src/summary/idl.dart
|
| @@ -224,7 +224,28 @@ enum IndexRelationKind {
|
| * Is referenced (and not invoked, read/written) at.
|
| * Right: location.
|
| */
|
| - IS_REFERENCED_BY
|
| + IS_REFERENCED_BY,
|
| +
|
| + /**
|
| + * Left: unresolved member name.
|
| + * Is read at.
|
| + * Right: location.
|
| + */
|
| + IS_READ_BY,
|
| +
|
| + /**
|
| + * Left: unresolved member name.
|
| + * Is both read and written at.
|
| + * Right: location.
|
| + */
|
| + IS_READ_WRITTEN_BY,
|
| +
|
| + /**
|
| + * Left: unresolved member name.
|
| + * Is written at.
|
| + * Right: location.
|
| + */
|
| + IS_WRITTEN_BY
|
| }
|
|
|
| /**
|
|
|