| Index: pkg/analyzer/lib/src/task/options.dart
|
| diff --git a/pkg/analyzer/lib/src/task/options.dart b/pkg/analyzer/lib/src/task/options.dart
|
| index 58d76ac5acb1d0bcb17ecdb04a1c9eab60ec9ca9..5ed99dca065df59afb1f0c83daa10bc49901bf7c 100644
|
| --- a/pkg/analyzer/lib/src/task/options.dart
|
| +++ b/pkg/analyzer/lib/src/task/options.dart
|
| @@ -29,6 +29,14 @@ final ListResultDescriptor<AnalysisError> ANALYSIS_OPTIONS_ERRORS =
|
| new ListResultDescriptor<AnalysisError>(
|
| 'ANALYSIS_OPTIONS_ERRORS', AnalysisError.NO_ERRORS);
|
|
|
| +/**
|
| + * The descriptor used to associate error processors with analysis contexts in
|
| + * configuration data.
|
| + */
|
| +final ListResultDescriptor<ErrorProcessor> CONFIGURED_ERROR_PROCESSORS =
|
| + new ListResultDescriptor<ErrorProcessor>(
|
| + 'configured.errors', const <ErrorProcessor>[]);
|
| +
|
| final _OptionsProcessor _processor = new _OptionsProcessor();
|
|
|
| void applyToAnalysisOptions(
|
|
|