| 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 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1267 * enum { | 1267 * enum { |
| 1268 * ANNOTATION | 1268 * ANNOTATION |
| 1269 * BUILT_IN | 1269 * BUILT_IN |
| 1270 * CLASS | 1270 * CLASS |
| 1271 * COMMENT_BLOCK | 1271 * COMMENT_BLOCK |
| 1272 * COMMENT_DOCUMENTATION | 1272 * COMMENT_DOCUMENTATION |
| 1273 * COMMENT_END_OF_LINE | 1273 * COMMENT_END_OF_LINE |
| 1274 * CONSTRUCTOR | 1274 * CONSTRUCTOR |
| 1275 * DIRECTIVE | 1275 * DIRECTIVE |
| 1276 * DYNAMIC_TYPE | 1276 * DYNAMIC_TYPE |
| 1277 * ENUM |
| 1278 * ENUM_CONSTANT |
| 1277 * FIELD | 1279 * FIELD |
| 1278 * FIELD_STATIC | 1280 * FIELD_STATIC |
| 1279 * FUNCTION | 1281 * FUNCTION |
| 1280 * FUNCTION_DECLARATION | 1282 * FUNCTION_DECLARATION |
| 1281 * FUNCTION_TYPE_ALIAS | 1283 * FUNCTION_TYPE_ALIAS |
| 1282 * GETTER_DECLARATION | 1284 * GETTER_DECLARATION |
| 1283 * IDENTIFIER_DEFAULT | 1285 * IDENTIFIER_DEFAULT |
| 1284 * IMPORT_PREFIX | 1286 * IMPORT_PREFIX |
| 1285 * KEYWORD | 1287 * KEYWORD |
| 1286 * LABEL | 1288 * LABEL |
| (...skipping 19 matching lines...) Expand all Loading... |
| 1306 final Matcher isHighlightRegionType = new MatchesEnum("HighlightRegionType", [ | 1308 final Matcher isHighlightRegionType = new MatchesEnum("HighlightRegionType", [ |
| 1307 "ANNOTATION", | 1309 "ANNOTATION", |
| 1308 "BUILT_IN", | 1310 "BUILT_IN", |
| 1309 "CLASS", | 1311 "CLASS", |
| 1310 "COMMENT_BLOCK", | 1312 "COMMENT_BLOCK", |
| 1311 "COMMENT_DOCUMENTATION", | 1313 "COMMENT_DOCUMENTATION", |
| 1312 "COMMENT_END_OF_LINE", | 1314 "COMMENT_END_OF_LINE", |
| 1313 "CONSTRUCTOR", | 1315 "CONSTRUCTOR", |
| 1314 "DIRECTIVE", | 1316 "DIRECTIVE", |
| 1315 "DYNAMIC_TYPE", | 1317 "DYNAMIC_TYPE", |
| 1318 "ENUM", |
| 1319 "ENUM_CONSTANT", |
| 1316 "FIELD", | 1320 "FIELD", |
| 1317 "FIELD_STATIC", | 1321 "FIELD_STATIC", |
| 1318 "FUNCTION", | 1322 "FUNCTION", |
| 1319 "FUNCTION_DECLARATION", | 1323 "FUNCTION_DECLARATION", |
| 1320 "FUNCTION_TYPE_ALIAS", | 1324 "FUNCTION_TYPE_ALIAS", |
| 1321 "GETTER_DECLARATION", | 1325 "GETTER_DECLARATION", |
| 1322 "IDENTIFIER_DEFAULT", | 1326 "IDENTIFIER_DEFAULT", |
| 1323 "IMPORT_PREFIX", | 1327 "IMPORT_PREFIX", |
| 1324 "KEYWORD", | 1328 "KEYWORD", |
| 1325 "LABEL", | 1329 "LABEL", |
| (...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2037 * | 2041 * |
| 2038 * { | 2042 * { |
| 2039 * "newName": String | 2043 * "newName": String |
| 2040 * } | 2044 * } |
| 2041 */ | 2045 */ |
| 2042 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2046 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 2043 "rename options", { | 2047 "rename options", { |
| 2044 "newName": isString | 2048 "newName": isString |
| 2045 })); | 2049 })); |
| 2046 | 2050 |
| OLD | NEW |