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

Unified Diff: pkg/analyzer/lib/src/generated/engine.dart

Issue 2968473002: Remove incremental: logger, validator, options. (Closed)
Patch Set: Created 3 years, 6 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/lib/src/context/context.dart ('k') | pkg/analyzer/lib/src/generated/incremental_logger.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/engine.dart
diff --git a/pkg/analyzer/lib/src/generated/engine.dart b/pkg/analyzer/lib/src/generated/engine.dart
index eee26b7c1b00e77b346cf8697b1997775c6e3ca7..d149ffcc1d26ee6d6a7885a57aeb2fc2540f2514 100644
--- a/pkg/analyzer/lib/src/generated/engine.dart
+++ b/pkg/analyzer/lib/src/generated/engine.dart
@@ -1260,23 +1260,6 @@ abstract class AnalysisOptions {
bool get hint;
/**
- * Return `true` if incremental analysis should be used.
- */
- bool get incremental;
-
- /**
- * A flag indicating whether incremental analysis should be used for API
- * changes.
- */
- bool get incrementalApi;
-
- /**
- * A flag indicating whether validation should be performed after incremental
- * analysis.
- */
- bool get incrementalValidation;
-
- /**
* Return `true` if analysis is to generate lint warnings.
*/
bool get lint;
@@ -1424,15 +1407,6 @@ class AnalysisOptionsImpl implements AnalysisOptions {
bool hint = true;
@override
- bool incremental = false;
-
- @override
- bool incrementalApi = false;
-
- @override
- bool incrementalValidation = false;
-
- @override
bool lint = false;
/**
@@ -1512,9 +1486,6 @@ class AnalysisOptionsImpl implements AnalysisOptions {
generateImplicitErrors = options.generateImplicitErrors;
generateSdkErrors = options.generateSdkErrors;
hint = options.hint;
- incremental = options.incremental;
- incrementalApi = options.incrementalApi;
- incrementalValidation = options.incrementalValidation;
lint = options.lint;
lintRules = options.lintRules;
preserveComments = options.preserveComments;
@@ -1682,9 +1653,6 @@ class AnalysisOptionsImpl implements AnalysisOptions {
hint = true;
implicitCasts = true;
implicitDynamic = true;
- incremental = false;
- incrementalApi = false;
- incrementalValidation = false;
lint = false;
_lintRules = null;
nonnullableTypes = NONNULLABLE_TYPES;
« no previous file with comments | « pkg/analyzer/lib/src/context/context.dart ('k') | pkg/analyzer/lib/src/generated/incremental_logger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698