| 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 934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 * enum { | 945 * enum { |
| 946 * ARGUMENT_LIST | 946 * ARGUMENT_LIST |
| 947 * CLASS | 947 * CLASS |
| 948 * CLASS_ALIAS | 948 * CLASS_ALIAS |
| 949 * CONSTRUCTOR | 949 * CONSTRUCTOR |
| 950 * FIELD | 950 * FIELD |
| 951 * FUNCTION | 951 * FUNCTION |
| 952 * FUNCTION_TYPE_ALIAS | 952 * FUNCTION_TYPE_ALIAS |
| 953 * GETTER | 953 * GETTER |
| 954 * IMPORT | 954 * IMPORT |
| 955 * KEYWORD |
| 955 * LIBRARY_PREFIX | 956 * LIBRARY_PREFIX |
| 956 * LOCAL_VARIABLE | 957 * LOCAL_VARIABLE |
| 957 * METHOD | 958 * METHOD |
| 958 * METHOD_NAME | 959 * METHOD_NAME |
| 959 * NAMED_ARGUMENT | 960 * NAMED_ARGUMENT |
| 960 * OPTIONAL_ARGUMENT | 961 * OPTIONAL_ARGUMENT |
| 961 * PARAMETER | 962 * PARAMETER |
| 962 * SETTER | 963 * SETTER |
| 963 * TOP_LEVEL_VARIABLE | 964 * TOP_LEVEL_VARIABLE |
| 964 * TYPE_PARAMETER | 965 * TYPE_PARAMETER |
| 965 * } | 966 * } |
| 966 */ | 967 */ |
| 967 final Matcher isCompletionSuggestionKind = new MatchesEnum("CompletionSuggestion
Kind", [ | 968 final Matcher isCompletionSuggestionKind = new MatchesEnum("CompletionSuggestion
Kind", [ |
| 968 "ARGUMENT_LIST", | 969 "ARGUMENT_LIST", |
| 969 "CLASS", | 970 "CLASS", |
| 970 "CLASS_ALIAS", | 971 "CLASS_ALIAS", |
| 971 "CONSTRUCTOR", | 972 "CONSTRUCTOR", |
| 972 "FIELD", | 973 "FIELD", |
| 973 "FUNCTION", | 974 "FUNCTION", |
| 974 "FUNCTION_TYPE_ALIAS", | 975 "FUNCTION_TYPE_ALIAS", |
| 975 "GETTER", | 976 "GETTER", |
| 976 "IMPORT", | 977 "IMPORT", |
| 978 "KEYWORD", |
| 977 "LIBRARY_PREFIX", | 979 "LIBRARY_PREFIX", |
| 978 "LOCAL_VARIABLE", | 980 "LOCAL_VARIABLE", |
| 979 "METHOD", | 981 "METHOD", |
| 980 "METHOD_NAME", | 982 "METHOD_NAME", |
| 981 "NAMED_ARGUMENT", | 983 "NAMED_ARGUMENT", |
| 982 "OPTIONAL_ARGUMENT", | 984 "OPTIONAL_ARGUMENT", |
| 983 "PARAMETER", | 985 "PARAMETER", |
| 984 "SETTER", | 986 "SETTER", |
| 985 "TOP_LEVEL_VARIABLE", | 987 "TOP_LEVEL_VARIABLE", |
| 986 "TYPE_PARAMETER" | 988 "TYPE_PARAMETER" |
| (...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1882 * | 1884 * |
| 1883 * { | 1885 * { |
| 1884 * "newName": String | 1886 * "newName": String |
| 1885 * } | 1887 * } |
| 1886 */ | 1888 */ |
| 1887 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 1889 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 1888 "rename options", { | 1890 "rename options", { |
| 1889 "newName": isString | 1891 "newName": isString |
| 1890 })); | 1892 })); |
| 1891 | 1893 |
| OLD | NEW |