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

Unified Diff: pkg/analyzer/lib/task/general.dart

Issue 2011183004: Precompute `IgnoreInfo` in Scanner. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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/task/general.dart
diff --git a/pkg/analyzer/lib/task/general.dart b/pkg/analyzer/lib/task/general.dart
index c40ff4c6be4cd92297dfbdc5b10d1fac3a65f5cb..9b33e870dd02bd814bfa598314013d8e2c8d4c55 100644
--- a/pkg/analyzer/lib/task/general.dart
+++ b/pkg/analyzer/lib/task/general.dart
@@ -14,6 +14,12 @@ final ResultDescriptor<String> CONTENT =
new ResultDescriptor<String>('CONTENT', null);
/**
+ * The ignore information for a [Source].
+ */
+final ResultDescriptor<IgnoreInfo> IGNORE_INFO =
+ new ResultDescriptor<IgnoreInfo>('IGNORE_INFO', null);
scheglov 2016/05/27 18:05:47 Do we need this as a public information?
Brian Wilkerson 2016/05/27 18:21:18 I'd make it an internal result until we find a rea
pquitslund 2016/05/27 21:50:53 Done.
+
+/**
* The line information for a [Source].
*/
final ResultDescriptor<LineInfo> LINE_INFO =

Powered by Google App Engine
This is Rietveld 408576698