| Index: pkg/analyzer/tool/summary/idl.dart
|
| diff --git a/pkg/analyzer/tool/summary/idl.dart b/pkg/analyzer/tool/summary/idl.dart
|
| index 9bbfc2b24f901a933f49df84fbe4d994f36760d4..1ed4374efa514c0de5048b525724ca8abfde7636 100644
|
| --- a/pkg/analyzer/tool/summary/idl.dart
|
| +++ b/pkg/analyzer/tool/summary/idl.dart
|
| @@ -266,23 +266,12 @@ class UnlinkedCombinator {
|
| /**
|
| * List of names which are shown. Empty if this is a `hide` combinator.
|
| */
|
| - List<UnlinkedCombinatorName> shows;
|
| + List<String> shows;
|
|
|
| /**
|
| * List of names which are hidden. Empty if this is a `show` combinator.
|
| */
|
| - List<UnlinkedCombinatorName> hides;
|
| -}
|
| -
|
| -/**
|
| - * Unlinked summary information about a single name in a `show` or `hide`
|
| - * combinator.
|
| - */
|
| -class UnlinkedCombinatorName {
|
| - /**
|
| - * The name itself.
|
| - */
|
| - String name;
|
| + List<String> hides;
|
| }
|
|
|
| /**
|
|
|