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

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

Issue 806943004: Add generateLints analysis option to the Server protocol API. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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/analysis_server/lib/src/generated_protocol.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/integration/protocol_matchers.dart
===================================================================
--- pkg/analysis_server/test/integration/protocol_matchers.dart (revision 42722)
+++ pkg/analysis_server/test/integration/protocol_matchers.dart (working copy)
@@ -987,6 +987,7 @@
* "enableEnums": optional bool
* "generateDart2jsHints": optional bool
* "generateHints": optional bool
+ * "generateLints": optional bool
* }
*/
final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject(
@@ -995,7 +996,8 @@
"enableDeferredLoading": isBool,
"enableEnums": isBool,
"generateDart2jsHints": isBool,
- "generateHints": isBool
+ "generateHints": isBool,
+ "generateLints": isBool
}));
/**
« no previous file with comments | « pkg/analysis_server/lib/src/generated_protocol.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698