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