| 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 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 860 "INFO", | 860 "INFO", |
| 861 "WARNING", | 861 "WARNING", |
| 862 "ERROR" | 862 "ERROR" |
| 863 ]); | 863 ]); |
| 864 | 864 |
| 865 /** | 865 /** |
| 866 * AnalysisErrorType | 866 * AnalysisErrorType |
| 867 * | 867 * |
| 868 * enum { | 868 * enum { |
| 869 * ANGULAR | 869 * ANGULAR |
| 870 * CHECKED_MODE_COMPILE_TIME_ERROR |
| 870 * COMPILE_TIME_ERROR | 871 * COMPILE_TIME_ERROR |
| 871 * HINT | 872 * HINT |
| 872 * POLYMER | 873 * POLYMER |
| 873 * STATIC_TYPE_WARNING | 874 * STATIC_TYPE_WARNING |
| 874 * STATIC_WARNING | 875 * STATIC_WARNING |
| 875 * SYNTACTIC_ERROR | 876 * SYNTACTIC_ERROR |
| 876 * TODO | 877 * TODO |
| 877 * } | 878 * } |
| 878 */ | 879 */ |
| 879 final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [ | 880 final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [ |
| 880 "ANGULAR", | 881 "ANGULAR", |
| 882 "CHECKED_MODE_COMPILE_TIME_ERROR", |
| 881 "COMPILE_TIME_ERROR", | 883 "COMPILE_TIME_ERROR", |
| 882 "HINT", | 884 "HINT", |
| 883 "POLYMER", | 885 "POLYMER", |
| 884 "STATIC_TYPE_WARNING", | 886 "STATIC_TYPE_WARNING", |
| 885 "STATIC_WARNING", | 887 "STATIC_WARNING", |
| 886 "SYNTACTIC_ERROR", | 888 "SYNTACTIC_ERROR", |
| 887 "TODO" | 889 "TODO" |
| 888 ]); | 890 ]); |
| 889 | 891 |
| 890 /** | 892 /** |
| (...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2032 * | 2034 * |
| 2033 * { | 2035 * { |
| 2034 * "newName": String | 2036 * "newName": String |
| 2035 * } | 2037 * } |
| 2036 */ | 2038 */ |
| 2037 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2039 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 2038 "rename options", { | 2040 "rename options", { |
| 2039 "newName": isString | 2041 "newName": isString |
| 2040 })); | 2042 })); |
| 2041 | 2043 |
| OLD | NEW |