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

Unified Diff: pkg/analyzer/lib/src/summary/idl.dart

Issue 2670843004: Record defined top-level/class-mebber names with unlinked bundles. (Closed)
Patch Set: Created 3 years, 11 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/lib/src/summary/idl.dart
diff --git a/pkg/analyzer/lib/src/summary/idl.dart b/pkg/analyzer/lib/src/summary/idl.dart
index a52ba4feebaa032bcd85d97d3113161922b36adb..e6f142dd8dc939dbc15f2fc73239d96d375406df 100644
--- a/pkg/analyzer/lib/src/summary/idl.dart
+++ b/pkg/analyzer/lib/src/summary/idl.dart
@@ -314,6 +314,18 @@ abstract class AnalysisDriverUnlinkedUnit extends base.SummaryClass {
generated.readAnalysisDriverUnlinkedUnit(buffer);
/**
+ * List of class member names defined by the unit.
+ */
+ @Id(3)
+ List<String> get definedClassMemberNames;
+
+ /**
+ * List of top-level names defined by the unit.
+ */
+ @Id(2)
+ List<String> get definedTopLevelNames;
+
+ /**
* List of external names referenced by the unit.
*/
@Id(0)
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.fbs ('k') | pkg/analyzer/test/src/dart/analysis/defined_names_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698