| 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/spec/generate_files". | 7 // "pkg/analysis_server/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 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1125 "UNIT_TEST_GROUP", | 1125 "UNIT_TEST_GROUP", |
| 1126 "UNIT_TEST_TEST", | 1126 "UNIT_TEST_TEST", |
| 1127 "UNKNOWN" | 1127 "UNKNOWN" |
| 1128 ]); | 1128 ]); |
| 1129 | 1129 |
| 1130 /** | 1130 /** |
| 1131 * ExecutableFile | 1131 * ExecutableFile |
| 1132 * | 1132 * |
| 1133 * { | 1133 * { |
| 1134 * "file": FilePath | 1134 * "file": FilePath |
| 1135 * "offset": ExecutableKind | 1135 * "kind": ExecutableKind |
| 1136 * } | 1136 * } |
| 1137 */ | 1137 */ |
| 1138 final Matcher isExecutableFile = new LazyMatcher(() => new MatchesJsonObject( | 1138 final Matcher isExecutableFile = new LazyMatcher(() => new MatchesJsonObject( |
| 1139 "ExecutableFile", { | 1139 "ExecutableFile", { |
| 1140 "file": isFilePath, | 1140 "file": isFilePath, |
| 1141 "offset": isExecutableKind | 1141 "kind": isExecutableKind |
| 1142 })); | 1142 })); |
| 1143 | 1143 |
| 1144 /** | 1144 /** |
| 1145 * ExecutableKind | 1145 * ExecutableKind |
| 1146 * | 1146 * |
| 1147 * enum { | 1147 * enum { |
| 1148 * CLIENT | 1148 * CLIENT |
| 1149 * EITHER | 1149 * EITHER |
| 1150 * SERVER | 1150 * SERVER |
| 1151 * } | 1151 * } |
| (...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1914 * | 1914 * |
| 1915 * { | 1915 * { |
| 1916 * "newName": String | 1916 * "newName": String |
| 1917 * } | 1917 * } |
| 1918 */ | 1918 */ |
| 1919 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 1919 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 1920 "rename options", { | 1920 "rename options", { |
| 1921 "newName": isString | 1921 "newName": isString |
| 1922 })); | 1922 })); |
| 1923 | 1923 |
| OLD | NEW |