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

Unified Diff: pkg/analyzer/lib/src/task/options.dart

Issue 2129033003: Options validation cleanup. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/task/options.dart
diff --git a/pkg/analyzer/lib/src/task/options.dart b/pkg/analyzer/lib/src/task/options.dart
index a25d146bc89f01e4317f8e229219eec1367c127f..6d066009b5246c63735727e71a2894db9302ce2d 100644
--- a/pkg/analyzer/lib/src/task/options.dart
+++ b/pkg/analyzer/lib/src/task/options.dart
@@ -49,9 +49,6 @@ class AnalyzerOptions {
static const String enableSuperMixins = 'enableSuperMixins';
static const String enableTrailingCommas = 'enableTrailingCommas';
- /// This option is deprecated.
- static const String enableConditionalDirectives =
- "enableConditionalDirectives";
static const String errors = 'errors';
static const String exclude = 'exclude';
static const String language = 'language';
@@ -83,10 +80,10 @@ class AnalyzerOptions {
/// Supported `analyzer` language configuration options.
static const List<String> languageOptions = const [
enableAsync,
- enableConditionalDirectives,
enableGenericMethods,
enableStrictCallChecks,
- enableSuperMixins
+ enableSuperMixins,
+ enableTrailingCommas
];
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698