| 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 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 ]); | 954 ]); |
| 955 | 955 |
| 956 /** | 956 /** |
| 957 * AnalysisErrorType | 957 * AnalysisErrorType |
| 958 * | 958 * |
| 959 * enum { | 959 * enum { |
| 960 * ANGULAR | 960 * ANGULAR |
| 961 * CHECKED_MODE_COMPILE_TIME_ERROR | 961 * CHECKED_MODE_COMPILE_TIME_ERROR |
| 962 * COMPILE_TIME_ERROR | 962 * COMPILE_TIME_ERROR |
| 963 * HINT | 963 * HINT |
| 964 * LINT |
| 964 * POLYMER | 965 * POLYMER |
| 965 * STATIC_TYPE_WARNING | 966 * STATIC_TYPE_WARNING |
| 966 * STATIC_WARNING | 967 * STATIC_WARNING |
| 967 * SYNTACTIC_ERROR | 968 * SYNTACTIC_ERROR |
| 968 * TODO | 969 * TODO |
| 969 * } | 970 * } |
| 970 */ | 971 */ |
| 971 final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [ | 972 final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [ |
| 972 "ANGULAR", | 973 "ANGULAR", |
| 973 "CHECKED_MODE_COMPILE_TIME_ERROR", | 974 "CHECKED_MODE_COMPILE_TIME_ERROR", |
| 974 "COMPILE_TIME_ERROR", | 975 "COMPILE_TIME_ERROR", |
| 975 "HINT", | 976 "HINT", |
| 977 "LINT", |
| 976 "POLYMER", | 978 "POLYMER", |
| 977 "STATIC_TYPE_WARNING", | 979 "STATIC_TYPE_WARNING", |
| 978 "STATIC_WARNING", | 980 "STATIC_WARNING", |
| 979 "SYNTACTIC_ERROR", | 981 "SYNTACTIC_ERROR", |
| 980 "TODO" | 982 "TODO" |
| 981 ]); | 983 ]); |
| 982 | 984 |
| 983 /** | 985 /** |
| 984 * AnalysisOptions | 986 * AnalysisOptions |
| 985 * | 987 * |
| (...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2141 * | 2143 * |
| 2142 * { | 2144 * { |
| 2143 * "newName": String | 2145 * "newName": String |
| 2144 * } | 2146 * } |
| 2145 */ | 2147 */ |
| 2146 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2148 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 2147 "rename options", { | 2149 "rename options", { |
| 2148 "newName": isString | 2150 "newName": isString |
| 2149 })); | 2151 })); |
| 2150 | 2152 |
| OLD | NEW |