Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Unified Diff: pkg/analyzer/tool/summary/idl.dart

Issue 1559963002: Use List<String> for combinators in summaries. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
/**

Powered by Google App Engine
This is Rietveld 408576698