| 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 1784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1795 /** | 1795 /** |
| 1796 * RequestErrorCode | 1796 * RequestErrorCode |
| 1797 * | 1797 * |
| 1798 * enum { | 1798 * enum { |
| 1799 * CONTENT_MODIFIED | 1799 * CONTENT_MODIFIED |
| 1800 * FORMAT_INVALID_FILE | 1800 * FORMAT_INVALID_FILE |
| 1801 * GET_ERRORS_INVALID_FILE | 1801 * GET_ERRORS_INVALID_FILE |
| 1802 * INVALID_OVERLAY_CHANGE | 1802 * INVALID_OVERLAY_CHANGE |
| 1803 * INVALID_PARAMETER | 1803 * INVALID_PARAMETER |
| 1804 * INVALID_REQUEST | 1804 * INVALID_REQUEST |
| 1805 * REFACTORING_REQUEST_CANCELLED |
| 1805 * SERVER_ALREADY_STARTED | 1806 * SERVER_ALREADY_STARTED |
| 1806 * SERVER_ERROR | 1807 * SERVER_ERROR |
| 1807 * SORT_MEMBERS_INVALID_FILE | 1808 * SORT_MEMBERS_INVALID_FILE |
| 1808 * SORT_MEMBERS_PARSE_ERRORS | 1809 * SORT_MEMBERS_PARSE_ERRORS |
| 1809 * UNANALYZED_PRIORITY_FILES | 1810 * UNANALYZED_PRIORITY_FILES |
| 1810 * UNKNOWN_REQUEST | 1811 * UNKNOWN_REQUEST |
| 1811 * UNSUPPORTED_FEATURE | 1812 * UNSUPPORTED_FEATURE |
| 1812 * } | 1813 * } |
| 1813 */ | 1814 */ |
| 1814 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ | 1815 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ |
| 1815 "CONTENT_MODIFIED", | 1816 "CONTENT_MODIFIED", |
| 1816 "FORMAT_INVALID_FILE", | 1817 "FORMAT_INVALID_FILE", |
| 1817 "GET_ERRORS_INVALID_FILE", | 1818 "GET_ERRORS_INVALID_FILE", |
| 1818 "INVALID_OVERLAY_CHANGE", | 1819 "INVALID_OVERLAY_CHANGE", |
| 1819 "INVALID_PARAMETER", | 1820 "INVALID_PARAMETER", |
| 1820 "INVALID_REQUEST", | 1821 "INVALID_REQUEST", |
| 1822 "REFACTORING_REQUEST_CANCELLED", |
| 1821 "SERVER_ALREADY_STARTED", | 1823 "SERVER_ALREADY_STARTED", |
| 1822 "SERVER_ERROR", | 1824 "SERVER_ERROR", |
| 1823 "SORT_MEMBERS_INVALID_FILE", | 1825 "SORT_MEMBERS_INVALID_FILE", |
| 1824 "SORT_MEMBERS_PARSE_ERRORS", | 1826 "SORT_MEMBERS_PARSE_ERRORS", |
| 1825 "UNANALYZED_PRIORITY_FILES", | 1827 "UNANALYZED_PRIORITY_FILES", |
| 1826 "UNKNOWN_REQUEST", | 1828 "UNKNOWN_REQUEST", |
| 1827 "UNSUPPORTED_FEATURE" | 1829 "UNSUPPORTED_FEATURE" |
| 1828 ]); | 1830 ]); |
| 1829 | 1831 |
| 1830 /** | 1832 /** |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2151 * | 2153 * |
| 2152 * { | 2154 * { |
| 2153 * "newName": String | 2155 * "newName": String |
| 2154 * } | 2156 * } |
| 2155 */ | 2157 */ |
| 2156 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2158 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 2157 "rename options", { | 2159 "rename options", { |
| 2158 "newName": isString | 2160 "newName": isString |
| 2159 })); | 2161 })); |
| 2160 | 2162 |
| OLD | NEW |