| 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 1781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1792 "stackTrace": isString | 1792 "stackTrace": isString |
| 1793 })); | 1793 })); |
| 1794 | 1794 |
| 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_EXECUTION_CONTEXT |
| 1802 * INVALID_OVERLAY_CHANGE | 1803 * INVALID_OVERLAY_CHANGE |
| 1803 * INVALID_PARAMETER | 1804 * INVALID_PARAMETER |
| 1804 * INVALID_REQUEST | 1805 * INVALID_REQUEST |
| 1805 * REFACTORING_REQUEST_CANCELLED | 1806 * REFACTORING_REQUEST_CANCELLED |
| 1806 * SERVER_ALREADY_STARTED | 1807 * SERVER_ALREADY_STARTED |
| 1807 * SERVER_ERROR | 1808 * SERVER_ERROR |
| 1808 * SORT_MEMBERS_INVALID_FILE | 1809 * SORT_MEMBERS_INVALID_FILE |
| 1809 * SORT_MEMBERS_PARSE_ERRORS | 1810 * SORT_MEMBERS_PARSE_ERRORS |
| 1810 * UNANALYZED_PRIORITY_FILES | 1811 * UNANALYZED_PRIORITY_FILES |
| 1811 * UNKNOWN_REQUEST | 1812 * UNKNOWN_REQUEST |
| 1812 * UNSUPPORTED_FEATURE | 1813 * UNSUPPORTED_FEATURE |
| 1813 * } | 1814 * } |
| 1814 */ | 1815 */ |
| 1815 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ | 1816 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ |
| 1816 "CONTENT_MODIFIED", | 1817 "CONTENT_MODIFIED", |
| 1817 "FORMAT_INVALID_FILE", | 1818 "FORMAT_INVALID_FILE", |
| 1818 "GET_ERRORS_INVALID_FILE", | 1819 "GET_ERRORS_INVALID_FILE", |
| 1820 "INVALID_EXECUTION_CONTEXT", |
| 1819 "INVALID_OVERLAY_CHANGE", | 1821 "INVALID_OVERLAY_CHANGE", |
| 1820 "INVALID_PARAMETER", | 1822 "INVALID_PARAMETER", |
| 1821 "INVALID_REQUEST", | 1823 "INVALID_REQUEST", |
| 1822 "REFACTORING_REQUEST_CANCELLED", | 1824 "REFACTORING_REQUEST_CANCELLED", |
| 1823 "SERVER_ALREADY_STARTED", | 1825 "SERVER_ALREADY_STARTED", |
| 1824 "SERVER_ERROR", | 1826 "SERVER_ERROR", |
| 1825 "SORT_MEMBERS_INVALID_FILE", | 1827 "SORT_MEMBERS_INVALID_FILE", |
| 1826 "SORT_MEMBERS_PARSE_ERRORS", | 1828 "SORT_MEMBERS_PARSE_ERRORS", |
| 1827 "UNANALYZED_PRIORITY_FILES", | 1829 "UNANALYZED_PRIORITY_FILES", |
| 1828 "UNKNOWN_REQUEST", | 1830 "UNKNOWN_REQUEST", |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2153 * | 2155 * |
| 2154 * { | 2156 * { |
| 2155 * "newName": String | 2157 * "newName": String |
| 2156 * } | 2158 * } |
| 2157 */ | 2159 */ |
| 2158 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( | 2160 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( |
| 2159 "rename options", { | 2161 "rename options", { |
| 2160 "newName": isString | 2162 "newName": isString |
| 2161 })); | 2163 })); |
| 2162 | 2164 |
| OLD | NEW |