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

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

Issue 932883002: Addition of the --no-index flag to the analysis server spec. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 1792 matching lines...) Expand 10 before | Expand all | Expand 10 after
1803 * RequestErrorCode 1803 * RequestErrorCode
1804 * 1804 *
1805 * enum { 1805 * enum {
1806 * CONTENT_MODIFIED 1806 * CONTENT_MODIFIED
1807 * FORMAT_INVALID_FILE 1807 * FORMAT_INVALID_FILE
1808 * GET_ERRORS_INVALID_FILE 1808 * GET_ERRORS_INVALID_FILE
1809 * INVALID_EXECUTION_CONTEXT 1809 * INVALID_EXECUTION_CONTEXT
1810 * INVALID_OVERLAY_CHANGE 1810 * INVALID_OVERLAY_CHANGE
1811 * INVALID_PARAMETER 1811 * INVALID_PARAMETER
1812 * INVALID_REQUEST 1812 * INVALID_REQUEST
1813 * NO_INDEX_GENERATED
1813 * REFACTORING_REQUEST_CANCELLED 1814 * REFACTORING_REQUEST_CANCELLED
1814 * SERVER_ALREADY_STARTED 1815 * SERVER_ALREADY_STARTED
1815 * SERVER_ERROR 1816 * SERVER_ERROR
1816 * SORT_MEMBERS_INVALID_FILE 1817 * SORT_MEMBERS_INVALID_FILE
1817 * SORT_MEMBERS_PARSE_ERRORS 1818 * SORT_MEMBERS_PARSE_ERRORS
1818 * UNANALYZED_PRIORITY_FILES 1819 * UNANALYZED_PRIORITY_FILES
1819 * UNKNOWN_REQUEST 1820 * UNKNOWN_REQUEST
1820 * UNSUPPORTED_FEATURE 1821 * UNSUPPORTED_FEATURE
1821 * } 1822 * }
1822 */ 1823 */
1823 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ 1824 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [
1824 "CONTENT_MODIFIED", 1825 "CONTENT_MODIFIED",
1825 "FORMAT_INVALID_FILE", 1826 "FORMAT_INVALID_FILE",
1826 "GET_ERRORS_INVALID_FILE", 1827 "GET_ERRORS_INVALID_FILE",
1827 "INVALID_EXECUTION_CONTEXT", 1828 "INVALID_EXECUTION_CONTEXT",
1828 "INVALID_OVERLAY_CHANGE", 1829 "INVALID_OVERLAY_CHANGE",
1829 "INVALID_PARAMETER", 1830 "INVALID_PARAMETER",
1830 "INVALID_REQUEST", 1831 "INVALID_REQUEST",
1832 "NO_INDEX_GENERATED",
1831 "REFACTORING_REQUEST_CANCELLED", 1833 "REFACTORING_REQUEST_CANCELLED",
1832 "SERVER_ALREADY_STARTED", 1834 "SERVER_ALREADY_STARTED",
1833 "SERVER_ERROR", 1835 "SERVER_ERROR",
1834 "SORT_MEMBERS_INVALID_FILE", 1836 "SORT_MEMBERS_INVALID_FILE",
1835 "SORT_MEMBERS_PARSE_ERRORS", 1837 "SORT_MEMBERS_PARSE_ERRORS",
1836 "UNANALYZED_PRIORITY_FILES", 1838 "UNANALYZED_PRIORITY_FILES",
1837 "UNKNOWN_REQUEST", 1839 "UNKNOWN_REQUEST",
1838 "UNSUPPORTED_FEATURE" 1840 "UNSUPPORTED_FEATURE"
1839 ]); 1841 ]);
1840 1842
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
2162 * 2164 *
2163 * { 2165 * {
2164 * "newName": String 2166 * "newName": String
2165 * } 2167 * }
2166 */ 2168 */
2167 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( 2169 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject(
2168 "rename options", { 2170 "rename options", {
2169 "newName": isString 2171 "newName": isString
2170 })); 2172 }));
2171 2173
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698