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

Unified Diff: pkg/analysis_server/lib/src/server/driver.dart

Issue 2834773003: Remove the limited invalidation feature. (Closed)
Patch Set: Created 3 years, 8 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/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analyzer/lib/src/context/context.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/server/driver.dart
diff --git a/pkg/analysis_server/lib/src/server/driver.dart b/pkg/analysis_server/lib/src/server/driver.dart
index f2ed4a3b606e1ecac00bec4581a56026d2010933..497727e8a9634f2b7216f700fa53a8825babfa98 100644
--- a/pkg/analysis_server/lib/src/server/driver.dart
+++ b/pkg/analysis_server/lib/src/server/driver.dart
@@ -249,11 +249,6 @@ class Driver implements ServerStarter {
'disable-new-analysis-driver';
/**
- * The name of the option used to enable fined grained invalidation.
- */
- static const String FINER_GRAINED_INVALIDATION = 'finer-grained-invalidation';
-
- /**
* The name of the option used to cause instrumentation to also be written to
* a local file.
*/
@@ -396,8 +391,6 @@ class Driver implements ServerStarter {
results[INCREMENTAL_RESOLUTION_VALIDATION];
analysisServerOptions.enableNewAnalysisDriver =
!results[DISABLE_NEW_ANALYSIS_DRIVER];
- analysisServerOptions.finerGrainedInvalidation =
- results[FINER_GRAINED_INVALIDATION];
analysisServerOptions.noIndex = results[NO_INDEX];
analysisServerOptions.useAnalysisHighlight2 =
results[USE_ANALYSIS_HIGHLIGHT2];
@@ -559,10 +552,6 @@ class Driver implements ServerStarter {
help: "disable using new analysis driver",
defaultsTo: false,
negatable: false);
- parser.addFlag(FINER_GRAINED_INVALIDATION,
- help: "enable finer grained invalidation",
- defaultsTo: false,
- negatable: false);
parser.addOption(INSTRUMENTATION_LOG_FILE,
help:
"the path of the file to which instrumentation data will be written");
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analyzer/lib/src/context/context.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698