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

Unified Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

Issue 1063613002: Add an analysis server option to enable null-aware-operator support. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Roll the analysis server JSON API version. Created 5 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
Index: pkg/analysis_server/test/integration/protocol_matchers.dart
diff --git a/pkg/analysis_server/test/integration/protocol_matchers.dart b/pkg/analysis_server/test/integration/protocol_matchers.dart
index 1331b088c5d6d1fa775ea40deb49aacd1b132e9b..83314f9fc9bfee131c1ea9afd57182642b2ca5b9 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1022,6 +1022,7 @@ final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [
* "enableAsync": optional bool
* "enableDeferredLoading": optional bool
* "enableEnums": optional bool
+ * "enableNullAwareOperators": optional bool
* "generateDart2jsHints": optional bool
* "generateHints": optional bool
* "generateLints": optional bool
@@ -1032,6 +1033,7 @@ final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject(
"enableAsync": isBool,
"enableDeferredLoading": isBool,
"enableEnums": isBool,
+ "enableNullAwareOperators": isBool,
"generateDart2jsHints": isBool,
"generateHints": isBool,
"generateLints": isBool

Powered by Google App Engine
This is Rietveld 408576698