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

Unified Diff: pkg/analyzer/lib/src/summary/idl.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/lib/src/summary/format.dart ('k') | pkg/analyzer/tool/summary/generate.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 445305624699b64275f1ecd00242c745daa9099c..eb5eb7e091a0616550019fdc842fe4ca285f910f 100644
--- a/pkg/analyzer/lib/src/summary/idl.dart
+++ b/pkg/analyzer/lib/src/summary/idl.dart
@@ -860,6 +860,7 @@ abstract class UnlinkedClass extends base.SummaryClass {
/**
* Code range of the class.
*/
+ @informative
@Id(13)
CodeRange get codeRange;
@@ -1416,6 +1417,7 @@ abstract class UnlinkedEnum extends base.SummaryClass {
/**
* Code range of the enum.
*/
+ @informative
@Id(5)
CodeRange get codeRange;
@@ -1488,6 +1490,7 @@ abstract class UnlinkedExecutable extends base.SummaryClass {
/**
* Code range of the executable.
*/
+ @informative
@Id(26)
CodeRange get codeRange;
@@ -1877,6 +1880,7 @@ abstract class UnlinkedParam extends base.SummaryClass {
/**
* Code range of the parameter.
*/
+ @informative
@Id(14)
CodeRange get codeRange;
@@ -2133,6 +2137,7 @@ abstract class UnlinkedTypedef extends base.SummaryClass {
/**
* Code range of the typedef.
*/
+ @informative
@Id(7)
CodeRange get codeRange;
@@ -2196,6 +2201,7 @@ abstract class UnlinkedTypeParam extends base.SummaryClass {
/**
* Code range of the type parameter.
*/
+ @informative
@Id(4)
CodeRange get codeRange;
@@ -2230,6 +2236,7 @@ abstract class UnlinkedUnit extends base.SummaryClass {
/**
* Code range of the unit.
*/
+ @informative
@Id(15)
CodeRange get codeRange;
@@ -2344,6 +2351,7 @@ abstract class UnlinkedVariable extends base.SummaryClass {
/**
* Code range of the variable.
*/
+ @informative
@Id(14)
CodeRange get codeRange;
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.dart ('k') | pkg/analyzer/tool/summary/generate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698