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

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

Issue 1301533003: Plumb "enableSuperMixins" option through analysis server (implements DEP 34). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 24cc21e68fb66e7ddb44c70c14b091bf43ce9132..349e3f2700f9f45be7606b6f0ff7cba626f49aad 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1079,6 +1079,7 @@ final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [
* "enableDeferredLoading": optional bool
* "enableEnums": optional bool
* "enableNullAwareOperators": optional bool
+ * "enableSuperMixins": optional bool
* "generateDart2jsHints": optional bool
* "generateHints": optional bool
* "generateLints": optional bool
@@ -1090,6 +1091,7 @@ final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject(
"enableDeferredLoading": isBool,
"enableEnums": isBool,
"enableNullAwareOperators": isBool,
+ "enableSuperMixins": isBool,
"generateDart2jsHints": isBool,
"generateHints": isBool,
"generateLints": isBool

Powered by Google App Engine
This is Rietveld 408576698