| 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 1669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1680 /** | 1680 /** |
| 1681 * RequestErrorCode | 1681 * RequestErrorCode |
| 1682 * | 1682 * |
| 1683 * enum { | 1683 * enum { |
| 1684 * GET_ERRORS_INVALID_FILE | 1684 * GET_ERRORS_INVALID_FILE |
| 1685 * INVALID_OVERLAY_CHANGE | 1685 * INVALID_OVERLAY_CHANGE |
| 1686 * INVALID_PARAMETER | 1686 * INVALID_PARAMETER |
| 1687 * INVALID_REQUEST | 1687 * INVALID_REQUEST |
| 1688 * SERVER_ALREADY_STARTED | 1688 * SERVER_ALREADY_STARTED |
| 1689 * SERVER_ERROR | 1689 * SERVER_ERROR |
| 1690 * SORT_MEMBERS_INVALID_FILE |
| 1691 * SORT_MEMBERS_PARSE_ERRORS |
| 1690 * UNANALYZED_PRIORITY_FILES | 1692 * UNANALYZED_PRIORITY_FILES |
| 1691 * UNKNOWN_REQUEST | 1693 * UNKNOWN_REQUEST |
| 1692 * UNSUPPORTED_FEATURE | 1694 * UNSUPPORTED_FEATURE |
| 1693 * } | 1695 * } |
| 1694 */ | 1696 */ |
| 1695 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ | 1697 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ |
| 1696 "GET_ERRORS_INVALID_FILE", | 1698 "GET_ERRORS_INVALID_FILE", |
| 1697 "INVALID_OVERLAY_CHANGE", | 1699 "INVALID_OVERLAY_CHANGE", |
| 1698 "INVALID_PARAMETER", | 1700 "INVALID_PARAMETER", |
| 1699 "INVALID_REQUEST", | 1701 "INVALID_REQUEST", |
| 1700 "SERVER_ALREADY_STARTED", | 1702 "SERVER_ALREADY_STARTED", |
| 1701 "SERVER_ERROR", | 1703 "SERVER_ERROR", |
| 1704 "SORT_MEMBERS_INVALID_FILE", |
| 1705 "SORT_MEMBERS_PARSE_ERRORS", |
| 1702 "UNANALYZED_PRIORITY_FILES", | 1706 "UNANALYZED_PRIORITY_FILES", |
| 1703 "UNKNOWN_REQUEST", | 1707 "UNKNOWN_REQUEST", |
| 1704 "UNSUPPORTED_FEATURE" | 1708 "UNSUPPORTED_FEATURE" |
| 1705 ]); | 1709 ]); |
| 1706 | 1710 |
| 1707 /** | 1711 /** |
| 1708 * SearchId | 1712 * SearchId |
| 1709 * | 1713 * |
| 1710 * String | 1714 * String |
| 1711 */ | 1715 */ |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2028 * | 2032 * |
| 2029 * { | 2033 * { |
| 2030 * "newName": String | 2034 * "newName": String |
| 2031 * } | 2035 * } |
| 2032 */ | 2036 */ |
| 2033 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2037 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 2034 "rename options", { | 2038 "rename options", { |
| 2035 "newName": isString | 2039 "newName": isString |
| 2036 })); | 2040 })); |
| 2037 | 2041 |
| OLD | NEW |