| 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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 980 | 980 |
| 981 /** | 981 /** |
| 982 * AnalysisOptions | 982 * AnalysisOptions |
| 983 * | 983 * |
| 984 * { | 984 * { |
| 985 * "enableAsync": optional bool | 985 * "enableAsync": optional bool |
| 986 * "enableDeferredLoading": optional bool | 986 * "enableDeferredLoading": optional bool |
| 987 * "enableEnums": optional bool | 987 * "enableEnums": optional bool |
| 988 * "generateDart2jsHints": optional bool | 988 * "generateDart2jsHints": optional bool |
| 989 * "generateHints": optional bool | 989 * "generateHints": optional bool |
| 990 * "generateLints": optional bool |
| 990 * } | 991 * } |
| 991 */ | 992 */ |
| 992 final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject( | 993 final Matcher isAnalysisOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 993 "AnalysisOptions", null, optionalFields: { | 994 "AnalysisOptions", null, optionalFields: { |
| 994 "enableAsync": isBool, | 995 "enableAsync": isBool, |
| 995 "enableDeferredLoading": isBool, | 996 "enableDeferredLoading": isBool, |
| 996 "enableEnums": isBool, | 997 "enableEnums": isBool, |
| 997 "generateDart2jsHints": isBool, | 998 "generateDart2jsHints": isBool, |
| 998 "generateHints": isBool | 999 "generateHints": isBool, |
| 1000 "generateLints": isBool |
| 999 })); | 1001 })); |
| 1000 | 1002 |
| 1001 /** | 1003 /** |
| 1002 * AnalysisService | 1004 * AnalysisService |
| 1003 * | 1005 * |
| 1004 * enum { | 1006 * enum { |
| 1005 * FOLDING | 1007 * FOLDING |
| 1006 * HIGHLIGHTS | 1008 * HIGHLIGHTS |
| 1007 * INVALIDATE | 1009 * INVALIDATE |
| 1008 * NAVIGATION | 1010 * NAVIGATION |
| (...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2139 * | 2141 * |
| 2140 * { | 2142 * { |
| 2141 * "newName": String | 2143 * "newName": String |
| 2142 * } | 2144 * } |
| 2143 */ | 2145 */ |
| 2144 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2146 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 2145 "rename options", { | 2147 "rename options", { |
| 2146 "newName": isString | 2148 "newName": isString |
| 2147 })); | 2149 })); |
| 2148 | 2150 |
| OLD | NEW |