| 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/spec/generate_files". | 7 // "pkg/analysis_server/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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 final Matcher isAnalysisErrorSeverity = new MatchesEnum("AnalysisErrorSeverity",
[ | 830 final Matcher isAnalysisErrorSeverity = new MatchesEnum("AnalysisErrorSeverity",
[ |
| 831 "INFO", | 831 "INFO", |
| 832 "WARNING", | 832 "WARNING", |
| 833 "ERROR" | 833 "ERROR" |
| 834 ]); | 834 ]); |
| 835 | 835 |
| 836 /** | 836 /** |
| 837 * AnalysisErrorType | 837 * AnalysisErrorType |
| 838 * | 838 * |
| 839 * enum { | 839 * enum { |
| 840 * ANGULAR |
| 840 * COMPILE_TIME_ERROR | 841 * COMPILE_TIME_ERROR |
| 841 * HINT | 842 * HINT |
| 843 * POLYMER |
| 842 * STATIC_TYPE_WARNING | 844 * STATIC_TYPE_WARNING |
| 843 * STATIC_WARNING | 845 * STATIC_WARNING |
| 844 * SYNTACTIC_ERROR | 846 * SYNTACTIC_ERROR |
| 845 * TODO | 847 * TODO |
| 846 * } | 848 * } |
| 847 */ | 849 */ |
| 848 final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [ | 850 final Matcher isAnalysisErrorType = new MatchesEnum("AnalysisErrorType", [ |
| 851 "ANGULAR", |
| 849 "COMPILE_TIME_ERROR", | 852 "COMPILE_TIME_ERROR", |
| 850 "HINT", | 853 "HINT", |
| 854 "POLYMER", |
| 851 "STATIC_TYPE_WARNING", | 855 "STATIC_TYPE_WARNING", |
| 852 "STATIC_WARNING", | 856 "STATIC_WARNING", |
| 853 "SYNTACTIC_ERROR", | 857 "SYNTACTIC_ERROR", |
| 854 "TODO" | 858 "TODO" |
| 855 ]); | 859 ]); |
| 856 | 860 |
| 857 /** | 861 /** |
| 858 * AnalysisOptions | 862 * AnalysisOptions |
| 859 * | 863 * |
| 860 * { | 864 * { |
| (...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1958 * | 1962 * |
| 1959 * { | 1963 * { |
| 1960 * "newName": String | 1964 * "newName": String |
| 1961 * } | 1965 * } |
| 1962 */ | 1966 */ |
| 1963 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 1967 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 1964 "rename options", { | 1968 "rename options", { |
| 1965 "newName": isString | 1969 "newName": isString |
| 1966 })); | 1970 })); |
| 1967 | 1971 |
| OLD | NEW |