| Index: pkg/analyzer_cli/lib/src/options.dart
|
| diff --git a/pkg/analyzer_cli/lib/src/options.dart b/pkg/analyzer_cli/lib/src/options.dart
|
| index 7f8da521abe0780ad7c2472e0edf56c466846155..df7302d1ac765715d2a1aac55fde43803fad42a4 100644
|
| --- a/pkg/analyzer_cli/lib/src/options.dart
|
| +++ b/pkg/analyzer_cli/lib/src/options.dart
|
| @@ -54,9 +54,6 @@ class CommandLineOptions {
|
| /// analyze function bodies to use summaries during future compilation steps.
|
| final bool buildSummaryOnlyDiet;
|
|
|
| - /// Whether to use exclude informative data from created summaries.
|
| - final bool buildSummaryExcludeInformative;
|
| -
|
| /// The path to output the summary when creating summaries in build mode.
|
| final String buildSummaryOutput;
|
|
|
| @@ -151,8 +148,6 @@ class CommandLineOptions {
|
| buildSummaryInputs = args['build-summary-input'] as List<String>,
|
| buildSummaryOnly = args['build-summary-only'],
|
| buildSummaryOnlyDiet = args['build-summary-only-diet'],
|
| - buildSummaryExcludeInformative =
|
| - args['build-summary-exclude-informative'],
|
| buildSummaryOutput = args['build-summary-output'],
|
| buildSummaryOutputSemantic = args['build-summary-output-semantic'],
|
| buildSuppressExitCode = args['build-suppress-exit-code'],
|
| @@ -389,22 +384,11 @@ class CommandLineOptions {
|
| defaultsTo: false,
|
| negatable: false,
|
| hide: hide)
|
| - ..addFlag('build-summary-only-ast',
|
| - help: 'deprecated -- Generate summaries using ASTs.',
|
| - defaultsTo: false,
|
| - negatable: false,
|
| - hide: hide)
|
| ..addFlag('build-summary-only-diet',
|
| help: 'Diet parse function bodies.',
|
| defaultsTo: false,
|
| negatable: false,
|
| hide: hide)
|
| - ..addFlag('build-summary-exclude-informative',
|
| - help: 'Exclude @informative information (docs, offsets, etc). '
|
| - 'Deprecated: please use --build-summary-output-semantic instead.',
|
| - defaultsTo: false,
|
| - negatable: false,
|
| - hide: hide)
|
| ..addFlag('build-suppress-exit-code',
|
| help: 'Exit with code 0 even if errors are found.',
|
| defaultsTo: false,
|
|
|