| 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 70da5919af7a3f1fa38a581bac177b5c19d52bc2..c64eddc5e11cc62b49249ba0790855df49abc4e2 100644
|
| --- a/pkg/analyzer_cli/lib/src/options.dart
|
| +++ b/pkg/analyzer_cli/lib/src/options.dart
|
| @@ -113,9 +113,6 @@ class CommandLineOptions {
|
| /// Whether to use machine format for error display
|
| final bool machineFormat;
|
|
|
| - /// The path to the root folder of the incremental cache.
|
| - final String incrementalCachePath;
|
| -
|
| /// The path to the package root
|
| final String packageRootPath;
|
|
|
| @@ -186,7 +183,6 @@ class CommandLineOptions {
|
| lints = args['lints'],
|
| log = args['log'],
|
| machineFormat = args['machine'] || args['format'] == 'machine',
|
| - incrementalCachePath = args['incremental-cache-path'],
|
| packageConfigPath = args['packages'],
|
| packageRootPath = args['package-root'],
|
| perfReport = args['x-perf-report'],
|
| @@ -364,13 +360,6 @@ class CommandLineOptions {
|
| allowMultiple: true,
|
| splitCommas: false)
|
| //
|
| - // Incremental analysis.
|
| - //
|
| - ..addOption('incremental-cache-path',
|
| - help: 'The path to the folder with information to support '
|
| - 'incremental analysis, e.g. summary files, errors, etc.',
|
| - hide: true)
|
| - //
|
| // Build mode.
|
| //
|
| ..addFlag('persistent_worker',
|
|
|