| 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 1851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1862 })); | 1862 })); |
| 1863 | 1863 |
| 1864 /** | 1864 /** |
| 1865 * RequestErrorCode | 1865 * RequestErrorCode |
| 1866 * | 1866 * |
| 1867 * enum { | 1867 * enum { |
| 1868 * CONTENT_MODIFIED | 1868 * CONTENT_MODIFIED |
| 1869 * FORMAT_INVALID_FILE | 1869 * FORMAT_INVALID_FILE |
| 1870 * FORMAT_WITH_ERRORS | 1870 * FORMAT_WITH_ERRORS |
| 1871 * GET_ERRORS_INVALID_FILE | 1871 * GET_ERRORS_INVALID_FILE |
| 1872 * GET_NAVIGATION_INVALID_FILE |
| 1872 * INVALID_ANALYSIS_ROOT | 1873 * INVALID_ANALYSIS_ROOT |
| 1873 * INVALID_EXECUTION_CONTEXT | 1874 * INVALID_EXECUTION_CONTEXT |
| 1874 * INVALID_OVERLAY_CHANGE | 1875 * INVALID_OVERLAY_CHANGE |
| 1875 * INVALID_PARAMETER | 1876 * INVALID_PARAMETER |
| 1876 * INVALID_REQUEST | 1877 * INVALID_REQUEST |
| 1877 * NO_INDEX_GENERATED | 1878 * NO_INDEX_GENERATED |
| 1878 * REFACTORING_REQUEST_CANCELLED | 1879 * REFACTORING_REQUEST_CANCELLED |
| 1879 * SERVER_ALREADY_STARTED | 1880 * SERVER_ALREADY_STARTED |
| 1880 * SERVER_ERROR | 1881 * SERVER_ERROR |
| 1881 * SORT_MEMBERS_INVALID_FILE | 1882 * SORT_MEMBERS_INVALID_FILE |
| 1882 * SORT_MEMBERS_PARSE_ERRORS | 1883 * SORT_MEMBERS_PARSE_ERRORS |
| 1883 * UNANALYZED_PRIORITY_FILES | 1884 * UNANALYZED_PRIORITY_FILES |
| 1884 * UNKNOWN_REQUEST | 1885 * UNKNOWN_REQUEST |
| 1885 * UNKNOWN_SOURCE | 1886 * UNKNOWN_SOURCE |
| 1886 * UNSUPPORTED_FEATURE | 1887 * UNSUPPORTED_FEATURE |
| 1887 * } | 1888 * } |
| 1888 */ | 1889 */ |
| 1889 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ | 1890 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ |
| 1890 "CONTENT_MODIFIED", | 1891 "CONTENT_MODIFIED", |
| 1891 "FORMAT_INVALID_FILE", | 1892 "FORMAT_INVALID_FILE", |
| 1892 "FORMAT_WITH_ERRORS", | 1893 "FORMAT_WITH_ERRORS", |
| 1893 "GET_ERRORS_INVALID_FILE", | 1894 "GET_ERRORS_INVALID_FILE", |
| 1895 "GET_NAVIGATION_INVALID_FILE", |
| 1894 "INVALID_ANALYSIS_ROOT", | 1896 "INVALID_ANALYSIS_ROOT", |
| 1895 "INVALID_EXECUTION_CONTEXT", | 1897 "INVALID_EXECUTION_CONTEXT", |
| 1896 "INVALID_OVERLAY_CHANGE", | 1898 "INVALID_OVERLAY_CHANGE", |
| 1897 "INVALID_PARAMETER", | 1899 "INVALID_PARAMETER", |
| 1898 "INVALID_REQUEST", | 1900 "INVALID_REQUEST", |
| 1899 "NO_INDEX_GENERATED", | 1901 "NO_INDEX_GENERATED", |
| 1900 "REFACTORING_REQUEST_CANCELLED", | 1902 "REFACTORING_REQUEST_CANCELLED", |
| 1901 "SERVER_ALREADY_STARTED", | 1903 "SERVER_ALREADY_STARTED", |
| 1902 "SERVER_ERROR", | 1904 "SERVER_ERROR", |
| 1903 "SORT_MEMBERS_INVALID_FILE", | 1905 "SORT_MEMBERS_INVALID_FILE", |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2232 * | 2234 * |
| 2233 * { | 2235 * { |
| 2234 * "newName": String | 2236 * "newName": String |
| 2235 * } | 2237 * } |
| 2236 */ | 2238 */ |
| 2237 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2239 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 2238 "rename options", { | 2240 "rename options", { |
| 2239 "newName": isString | 2241 "newName": isString |
| 2240 })); | 2242 })); |
| 2241 | 2243 |
| OLD | NEW |