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

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

Issue 2348283004: Remove incremental session from analyzer_cli. (Closed)
Patch Set: Created 4 years, 3 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/incremental_analyzer.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 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',
« no previous file with comments | « pkg/analyzer_cli/lib/src/incremental_analyzer.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698