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

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

Issue 1828973002: Add the --build-summary-exclude-informative flag. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « pkg/analyzer/tool/summary/generate.dart ('k') | pkg/analyzer_cli/lib/src/build_mode.dart » ('j') | 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 9ec248f994e41695ad4749531a100f0946ad8101..18b981cb57433bf3fa19e41472f65eac0dc8884b 100644
--- a/pkg/analyzer/tool/summary/idl_model.dart
+++ b/pkg/analyzer/tool/summary/idl_model.dart
@@ -25,7 +25,7 @@ class ClassDeclaration extends Declaration {
/**
* If [isTopLevel] is `true` and a file identifier was specified for this
- * class, the file identifier string. Otheswise `null`.
+ * class, the file identifier string. Otherwise `null`.
*/
final String fileIdentifier;
@@ -97,8 +97,13 @@ class FieldDeclaration extends Declaration {
*/
final bool isDeprecated;
- FieldDeclaration(
- String documentation, String name, this.type, this.id, this.isDeprecated)
+ /**
+ * Indicates whether the field is informative.
+ */
+ final bool isInformative;
+
+ FieldDeclaration(String documentation, String name, this.type, this.id,
+ this.isDeprecated, this.isInformative)
: super(documentation, name);
}
« no previous file with comments | « pkg/analyzer/tool/summary/generate.dart ('k') | pkg/analyzer_cli/lib/src/build_mode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698