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

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

Issue 2428413003: Mark some other instances of visibleLength/visibleOffset as informative. (Closed)
Patch Set: Created 4 years, 2 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') | no next file » | 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 07a946110587102f139ff1bfd80d244eb7938909..61f62a8bf0927583f21dacac30855441e1c85bbd 100644
--- a/pkg/analyzer/lib/src/summary/idl.dart
+++ b/pkg/analyzer/lib/src/summary/idl.dart
@@ -2337,12 +2337,14 @@ abstract class UnlinkedParam extends base.SummaryClass {
/**
* The length of the visible range.
*/
+ @informative
@Id(10)
int get visibleLength;
/**
* The beginning of the visible range.
*/
+ @informative
@Id(11)
int get visibleOffset;
}
@@ -2818,12 +2820,14 @@ abstract class UnlinkedVariable extends base.SummaryClass {
/**
* If a local variable, the length of the visible range; zero otherwise.
*/
+ @informative
@Id(11)
int get visibleLength;
/**
* If a local variable, the beginning of the visible range; zero otherwise.
*/
+ @informative
@Id(12)
int get visibleOffset;
}
« no previous file with comments | « pkg/analyzer/lib/src/summary/format.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698