Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(801)

Side by Side Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

Issue 884453002: Issue 22157. Cancel a pending refactoring request on receiving a new one. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1782 matching lines...) Expand 10 before | Expand all | Expand 10 after
1793 /** 1793 /**
1794 * RequestErrorCode 1794 * RequestErrorCode
1795 * 1795 *
1796 * enum { 1796 * enum {
1797 * CONTENT_MODIFIED 1797 * CONTENT_MODIFIED
1798 * FORMAT_INVALID_FILE 1798 * FORMAT_INVALID_FILE
1799 * GET_ERRORS_INVALID_FILE 1799 * GET_ERRORS_INVALID_FILE
1800 * INVALID_OVERLAY_CHANGE 1800 * INVALID_OVERLAY_CHANGE
1801 * INVALID_PARAMETER 1801 * INVALID_PARAMETER
1802 * INVALID_REQUEST 1802 * INVALID_REQUEST
1803 * REFACTORING_REQUEST_CANCELLED
1803 * SERVER_ALREADY_STARTED 1804 * SERVER_ALREADY_STARTED
1804 * SERVER_ERROR 1805 * SERVER_ERROR
1805 * SORT_MEMBERS_INVALID_FILE 1806 * SORT_MEMBERS_INVALID_FILE
1806 * SORT_MEMBERS_PARSE_ERRORS 1807 * SORT_MEMBERS_PARSE_ERRORS
1807 * UNANALYZED_PRIORITY_FILES 1808 * UNANALYZED_PRIORITY_FILES
1808 * UNKNOWN_REQUEST 1809 * UNKNOWN_REQUEST
1809 * UNSUPPORTED_FEATURE 1810 * UNSUPPORTED_FEATURE
1810 * } 1811 * }
1811 */ 1812 */
1812 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ 1813 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [
1813 "CONTENT_MODIFIED", 1814 "CONTENT_MODIFIED",
1814 "FORMAT_INVALID_FILE", 1815 "FORMAT_INVALID_FILE",
1815 "GET_ERRORS_INVALID_FILE", 1816 "GET_ERRORS_INVALID_FILE",
1816 "INVALID_OVERLAY_CHANGE", 1817 "INVALID_OVERLAY_CHANGE",
1817 "INVALID_PARAMETER", 1818 "INVALID_PARAMETER",
1818 "INVALID_REQUEST", 1819 "INVALID_REQUEST",
1820 "REFACTORING_REQUEST_CANCELLED",
1819 "SERVER_ALREADY_STARTED", 1821 "SERVER_ALREADY_STARTED",
1820 "SERVER_ERROR", 1822 "SERVER_ERROR",
1821 "SORT_MEMBERS_INVALID_FILE", 1823 "SORT_MEMBERS_INVALID_FILE",
1822 "SORT_MEMBERS_PARSE_ERRORS", 1824 "SORT_MEMBERS_PARSE_ERRORS",
1823 "UNANALYZED_PRIORITY_FILES", 1825 "UNANALYZED_PRIORITY_FILES",
1824 "UNKNOWN_REQUEST", 1826 "UNKNOWN_REQUEST",
1825 "UNSUPPORTED_FEATURE" 1827 "UNSUPPORTED_FEATURE"
1826 ]); 1828 ]);
1827 1829
1828 /** 1830 /**
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
2149 * 2151 *
2150 * { 2152 * {
2151 * "newName": String 2153 * "newName": String
2152 * } 2154 * }
2153 */ 2155 */
2154 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( 2156 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject(
2155 "rename options", { 2157 "rename options", {
2156 "newName": isString 2158 "newName": isString
2157 })); 2159 }));
2158 2160
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698