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

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

Issue 1406253004: Lexical support for configurable imports (DEP 40) (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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
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 5822a6114396204c862cb76d0259c2d8b728694c..1bdd9f8dcc0eea10a8c251478b57b49cca12ae91 100644
--- a/pkg/analyzer/lib/src/generated/engine.dart
+++ b/pkg/analyzer/lib/src/generated/engine.dart
@@ -6260,6 +6260,11 @@ abstract class AnalysisOptions {
bool get enableAsync;
/**
+ * Return `true` to enable interface libraries (DEP 40).
+ */
+ bool get enableConditionalDirectives;
+
+ /**
* Return `true` if analysis is to include the new deferred loading support.
*/
@deprecated // Always true
@@ -6387,6 +6392,11 @@ class AnalysisOptionsImpl implements AnalysisOptions {
bool dart2jsHint = false;
/**
+ * A flag indicating whether interface libraries are to be supported (DEP 40).
+ */
+ bool enableConditionalDirectives = false;
+
+ /**
* A flag indicating whether generic methods are to be supported (DEP 22).
*/
bool enableGenericMethods = false;

Powered by Google App Engine
This is Rietveld 408576698