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

Unified Diff: pkg/analyzer_cli/lib/src/options.dart

Issue 2709633006: Remove some unused flags for the analyzer cli's build mode. (Closed)
Patch Set: Created 3 years, 10 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_cli/lib/src/build_mode.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « pkg/analyzer_cli/lib/src/build_mode.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698