| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This file has been automatically generated. Please do not edit it manually. | 5 // This file has been automatically generated. Please do not edit it manually. |
| 6 // To regenerate the file, use the script | 6 // To regenerate the file, use the script |
| 7 // "pkg/analysis_server/tool/spec/generate_files". | 7 // "pkg/analysis_server/tool/spec/generate_files". |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * Matchers for data types defined in the analysis server API | 10 * Matchers for data types defined in the analysis server API |
| (...skipping 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1072 ]); | 1072 ]); |
| 1073 | 1073 |
| 1074 /** | 1074 /** |
| 1075 * AnalysisOptions | 1075 * AnalysisOptions |
| 1076 * | 1076 * |
| 1077 * { | 1077 * { |
| 1078 * "enableAsync": optional bool | 1078 * "enableAsync": optional bool |
| 1079 * "enableDeferredLoading": optional bool | 1079 * "enableDeferredLoading": optional bool |
| 1080 * "enableEnums": optional bool | 1080 * "enableEnums": optional bool |
| 1081 * "enableNullAwareOperators": optional bool | 1081 * "enableNullAwareOperators": optional bool |
| 1082 * "enableSuperMixins": optional bool |
| 1082 * "generateDart2jsHints": optional bool | 1083 * "generateDart2jsHints": optional bool |
| 1083 * "generateHints": optional bool | 1084 * "generateHints": optional bool |
| 1084 * "generateLints": optional bool | 1085 * "generateLints": optional bool |
| 1085 * } | 1086 * } |
| 1086 */ | 1087 */ |
| 1087 final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject( | 1088 final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 1088 "AnalysisOptions", null, optionalFields: { | 1089 "AnalysisOptions", null, optionalFields: { |
| 1089 "enableAsync": isBool, | 1090 "enableAsync": isBool, |
| 1090 "enableDeferredLoading": isBool, | 1091 "enableDeferredLoading": isBool, |
| 1091 "enableEnums": isBool, | 1092 "enableEnums": isBool, |
| 1092 "enableNullAwareOperators": isBool, | 1093 "enableNullAwareOperators": isBool, |
| 1094 "enableSuperMixins": isBool, |
| 1093 "generateDart2jsHints": isBool, | 1095 "generateDart2jsHints": isBool, |
| 1094 "generateHints": isBool, | 1096 "generateHints": isBool, |
| 1095 "generateLints": isBool | 1097 "generateLints": isBool |
| 1096 })); | 1098 })); |
| 1097 | 1099 |
| 1098 /** | 1100 /** |
| 1099 * AnalysisService | 1101 * AnalysisService |
| 1100 * | 1102 * |
| 1101 * enum { | 1103 * enum { |
| 1102 * FOLDING | 1104 * FOLDING |
| (...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2332 * | 2334 * |
| 2333 * { | 2335 * { |
| 2334 * "newName": String | 2336 * "newName": String |
| 2335 * } | 2337 * } |
| 2336 */ | 2338 */ |
| 2337 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2339 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 2338 "rename options", { | 2340 "rename options", { |
| 2339 "newName": isString | 2341 "newName": isString |
| 2340 })); | 2342 })); |
| 2341 | 2343 |
| OLD | NEW |