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

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

Issue 1851753002: Enable conditional directives by default. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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_resolver.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 846b27bfe3379a2ea527fb068a59145df2f3e4ce..5878d8581873823cc8108cd9694253c1242a627c 100644
--- a/pkg/analyzer/lib/src/generated/engine.dart
+++ b/pkg/analyzer/lib/src/generated/engine.dart
@@ -1060,11 +1060,6 @@ abstract class AnalysisOptions {
bool get enableAsync;
/**
- * Return `true` to enable interface libraries (DEP 40).
- */
- bool get enableConditionalDirectives;
Brian Wilkerson 2016/04/01 22:59:38 To avoid a breaking change, this should not be del
floitsch 2016/04/13 14:50:00 Done.
-
- /**
* Return `true` to enable generic methods (DEP 22).
*/
bool get enableGenericMethods => null;
@@ -1199,11 +1194,6 @@ class AnalysisOptionsImpl implements AnalysisOptions {
bool enableAsync = true;
/**
- * A flag indicating whether interface libraries are to be supported (DEP 40).
- */
- bool enableConditionalDirectives = false;
Brian Wilkerson 2016/04/01 22:59:38 This should be replaced by a deprecated getter tha
floitsch 2016/04/13 14:50:00 Done.
-
- /**
* A flag indicating whether generic methods are to be supported (DEP 22).
*/
bool enableGenericMethods = false;
@@ -1297,7 +1287,6 @@ class AnalysisOptionsImpl implements AnalysisOptions {
dart2jsHint = options.dart2jsHint;
enableAssertMessage = options.enableAssertMessage;
enableAsync = options.enableAsync;
- enableConditionalDirectives = options.enableConditionalDirectives;
enableStrictCallChecks = options.enableStrictCallChecks;
enableGenericMethods = options.enableGenericMethods;
enableSuperMixins = options.enableSuperMixins;
« no previous file with comments | « pkg/analyzer/lib/src/context/context.dart ('k') | pkg/analyzer/lib/src/generated/incremental_resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698