Clean up documentation of command-line analyzer options

Change-Id: If37cfbd7f1187229ab90205e59a7eb60d3b884cf
Reviewed-on: https://dart-review.googlesource.com/48701
Reviewed-by: Devon Carew <devoncarew@google.com>
Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
This commit is contained in:
Brian Wilkerson 2018-03-28 21:15:58 +00:00 committed by commit-bot@chromium.org
parent 4b682341d9
commit 7470f410dd
2 changed files with 8 additions and 6 deletions

View file

@ -222,7 +222,7 @@ void defineAnalysisArguments(ArgParser parser, {bool hide: true, ddc: false}) {
parser.addFlag(enableInitializingFormalAccessFlag,
help:
'Enable support for allowing access to field formal parameters in a '
'constructor\'s initializer list.',
'constructor\'s initializer list (deprecated).',
defaultsTo: false,
negatable: false,
hide: hide || ddc);

View file

@ -451,7 +451,7 @@ class CommandLineOptions {
hide: hide)
..addOption('x-package-warnings-prefix',
help:
'Show warnings from package: imports that match the given prefix.',
'Show warnings from package: imports that match the given prefix (deprecated).',
hide: hide)
..addFlag('enable-conditional-directives',
help:
@ -465,7 +465,7 @@ class CommandLineOptions {
negatable: false,
hide: hide)
..addFlag('sdk-warnings',
help: 'Show warnings from SDK imports.',
help: 'Show warnings from SDK imports (deprecated).',
defaultsTo: false,
negatable: false,
hide: hide)
@ -482,7 +482,8 @@ class CommandLineOptions {
// TODO(brianwilkerson) Remove the following option after we're sure that
// it's no longer being used.
..addFlag('enable-assert-initializers',
help: 'Enable parsing of asserts in constructor initializers.',
help:
'Enable parsing of asserts in constructor initializers (deprecated).',
defaultsTo: null,
negatable: false,
hide: hide)
@ -502,7 +503,7 @@ class CommandLineOptions {
negatable: false,
hide: hide)
..addFlag('package-warnings',
help: 'Show warnings from package: imports.',
help: 'Show warnings from package: imports (deprecated).',
defaultsTo: false,
negatable: false,
hide: hide)
@ -513,7 +514,8 @@ class CommandLineOptions {
splitCommas: false,
hide: hide)
..addFlag('use-cfe',
help: 'Enable the Dart 2.0 Common Front End implementation.',
help:
'Enable the Dart 2.0 Common Front End implementation (experimental).',
defaultsTo: false,
negatable: false,
hide: hide)