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

Unified Diff: pkg/analyzer/lib/src/generated/engine.dart

Issue 2651513002: Issue 28466. Include ErrorProcessor(s) into the AnalysisOptions signature. (Closed)
Patch Set: Created 3 years, 11 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/source/error_processor.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/generated/engine.dart
diff --git a/pkg/analyzer/lib/src/generated/engine.dart b/pkg/analyzer/lib/src/generated/engine.dart
index d92e8db496b3feb624c6b0825f0059a193a2b05f..a1cad478df24777d962daf399289365c5308bbae 100644
--- a/pkg/analyzer/lib/src/generated/engine.dart
+++ b/pkg/analyzer/lib/src/generated/engine.dart
@@ -1656,6 +1656,12 @@ class AnalysisOptionsImpl implements AnalysisOptions {
buffer.addBool(strongMode);
buffer.addBool(strongModeHints);
+ // Append error processors.
+ buffer.addInt(errorProcessors.length);
+ for (ErrorProcessor processor in errorProcessors) {
+ buffer.addString(processor.description);
+ }
+
// Append lints.
buffer.addInt(lintRules.length);
for (Linter lintRule in lintRules) {
« no previous file with comments | « pkg/analyzer/lib/source/error_processor.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698