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

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

Issue 1420053011: Introduce code to generate summaries from an element model. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address code review comments. Created 5 years, 1 month 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
« no previous file with comments | « pkg/analyzer/tool/summary/idl.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/tool/summary/idl_model.dart
diff --git a/pkg/analyzer/tool/summary/idl_model.dart b/pkg/analyzer/tool/summary/idl_model.dart
index d0089eac4794a6eb2aa0d53e46b9d2d8dac83092..8cd22905b26c1544aef35ec4be97d8990a1fe789 100644
--- a/pkg/analyzer/tool/summary/idl_model.dart
+++ b/pkg/analyzer/tool/summary/idl_model.dart
@@ -17,6 +17,13 @@ class ClassDeclaration {
* Fields defined in the class.
*/
final Map<String, FieldType> fields = <String, FieldType>{};
+
+/**
+ * Indicates whether the class has the `topLevel` annotation.
+ */
Brian Wilkerson 2015/11/11 21:06:39 Misaligned comment. Needs formatting?
Paul Berry 2015/11/11 21:14:08 Done.
+ final bool isTopLevel;
+
+ ClassDeclaration(this.isTopLevel);
}
/**
« no previous file with comments | « pkg/analyzer/tool/summary/idl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698