| 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
|
| }));
|
|
|
| /**
|
|
|