| 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 1074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1085 * CONSTRUCTOR | 1085 * CONSTRUCTOR |
| 1086 * FIELD | 1086 * FIELD |
| 1087 * FUNCTION | 1087 * FUNCTION |
| 1088 * FUNCTION_TYPE_ALIAS | 1088 * FUNCTION_TYPE_ALIAS |
| 1089 * GETTER | 1089 * GETTER |
| 1090 * LABEL | 1090 * LABEL |
| 1091 * LIBRARY | 1091 * LIBRARY |
| 1092 * LOCAL_VARIABLE | 1092 * LOCAL_VARIABLE |
| 1093 * METHOD | 1093 * METHOD |
| 1094 * PARAMETER | 1094 * PARAMETER |
| 1095 * PREFIX |
| 1095 * SETTER | 1096 * SETTER |
| 1096 * TOP_LEVEL_VARIABLE | 1097 * TOP_LEVEL_VARIABLE |
| 1097 * TYPE_PARAMETER | 1098 * TYPE_PARAMETER |
| 1098 * UNIT_TEST_GROUP | 1099 * UNIT_TEST_GROUP |
| 1099 * UNIT_TEST_TEST | 1100 * UNIT_TEST_TEST |
| 1100 * UNKNOWN | 1101 * UNKNOWN |
| 1101 * } | 1102 * } |
| 1102 */ | 1103 */ |
| 1103 final Matcher isElementKind = new MatchesEnum("ElementKind", [ | 1104 final Matcher isElementKind = new MatchesEnum("ElementKind", [ |
| 1104 "CLASS", | 1105 "CLASS", |
| 1105 "CLASS_TYPE_ALIAS", | 1106 "CLASS_TYPE_ALIAS", |
| 1106 "COMPILATION_UNIT", | 1107 "COMPILATION_UNIT", |
| 1107 "CONSTRUCTOR", | 1108 "CONSTRUCTOR", |
| 1108 "FIELD", | 1109 "FIELD", |
| 1109 "FUNCTION", | 1110 "FUNCTION", |
| 1110 "FUNCTION_TYPE_ALIAS", | 1111 "FUNCTION_TYPE_ALIAS", |
| 1111 "GETTER", | 1112 "GETTER", |
| 1112 "LABEL", | 1113 "LABEL", |
| 1113 "LIBRARY", | 1114 "LIBRARY", |
| 1114 "LOCAL_VARIABLE", | 1115 "LOCAL_VARIABLE", |
| 1115 "METHOD", | 1116 "METHOD", |
| 1116 "PARAMETER", | 1117 "PARAMETER", |
| 1118 "PREFIX", |
| 1117 "SETTER", | 1119 "SETTER", |
| 1118 "TOP_LEVEL_VARIABLE", | 1120 "TOP_LEVEL_VARIABLE", |
| 1119 "TYPE_PARAMETER", | 1121 "TYPE_PARAMETER", |
| 1120 "UNIT_TEST_GROUP", | 1122 "UNIT_TEST_GROUP", |
| 1121 "UNIT_TEST_TEST", | 1123 "UNIT_TEST_TEST", |
| 1122 "UNKNOWN" | 1124 "UNKNOWN" |
| 1123 ]); | 1125 ]); |
| 1124 | 1126 |
| 1125 /** | 1127 /** |
| 1126 * ExecutableFile | 1128 * ExecutableFile |
| (...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1978 * | 1980 * |
| 1979 * { | 1981 * { |
| 1980 * "newName": String | 1982 * "newName": String |
| 1981 * } | 1983 * } |
| 1982 */ | 1984 */ |
| 1983 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 1985 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 1984 "rename options", { | 1986 "rename options", { |
| 1985 "newName": isString | 1987 "newName": isString |
| 1986 })); | 1988 })); |
| 1987 | 1989 |
| OLD | NEW |