OLD | NEW |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 1974 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1985 * FORMAT_WITH_ERRORS | 1985 * FORMAT_WITH_ERRORS |
1986 * GET_ERRORS_INVALID_FILE | 1986 * GET_ERRORS_INVALID_FILE |
1987 * GET_NAVIGATION_INVALID_FILE | 1987 * GET_NAVIGATION_INVALID_FILE |
1988 * GET_REACHABLE_SOURCES_INVALID_FILE | 1988 * GET_REACHABLE_SOURCES_INVALID_FILE |
1989 * INVALID_ANALYSIS_ROOT | 1989 * INVALID_ANALYSIS_ROOT |
1990 * INVALID_EXECUTION_CONTEXT | 1990 * INVALID_EXECUTION_CONTEXT |
1991 * INVALID_FILE_PATH_FORMAT | 1991 * INVALID_FILE_PATH_FORMAT |
1992 * INVALID_OVERLAY_CHANGE | 1992 * INVALID_OVERLAY_CHANGE |
1993 * INVALID_PARAMETER | 1993 * INVALID_PARAMETER |
1994 * INVALID_REQUEST | 1994 * INVALID_REQUEST |
1995 * NO_INDEX_GENERATED | |
1996 * ORGANIZE_DIRECTIVES_ERROR | 1995 * ORGANIZE_DIRECTIVES_ERROR |
1997 * REFACTORING_REQUEST_CANCELLED | 1996 * REFACTORING_REQUEST_CANCELLED |
1998 * SERVER_ALREADY_STARTED | 1997 * SERVER_ALREADY_STARTED |
1999 * SERVER_ERROR | 1998 * SERVER_ERROR |
2000 * SORT_MEMBERS_INVALID_FILE | 1999 * SORT_MEMBERS_INVALID_FILE |
2001 * SORT_MEMBERS_PARSE_ERRORS | 2000 * SORT_MEMBERS_PARSE_ERRORS |
2002 * UNANALYZED_PRIORITY_FILES | 2001 * UNANALYZED_PRIORITY_FILES |
2003 * UNKNOWN_REQUEST | 2002 * UNKNOWN_REQUEST |
2004 * UNKNOWN_SOURCE | 2003 * UNKNOWN_SOURCE |
2005 * UNSUPPORTED_FEATURE | 2004 * UNSUPPORTED_FEATURE |
2006 * } | 2005 * } |
2007 */ | 2006 */ |
2008 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ | 2007 final Matcher isRequestErrorCode = new MatchesEnum("RequestErrorCode", [ |
2009 "CONTENT_MODIFIED", | 2008 "CONTENT_MODIFIED", |
2010 "DEBUG_PORT_COULD_NOT_BE_OPENED", | 2009 "DEBUG_PORT_COULD_NOT_BE_OPENED", |
2011 "FILE_NOT_ANALYZED", | 2010 "FILE_NOT_ANALYZED", |
2012 "FORMAT_INVALID_FILE", | 2011 "FORMAT_INVALID_FILE", |
2013 "FORMAT_WITH_ERRORS", | 2012 "FORMAT_WITH_ERRORS", |
2014 "GET_ERRORS_INVALID_FILE", | 2013 "GET_ERRORS_INVALID_FILE", |
2015 "GET_NAVIGATION_INVALID_FILE", | 2014 "GET_NAVIGATION_INVALID_FILE", |
2016 "GET_REACHABLE_SOURCES_INVALID_FILE", | 2015 "GET_REACHABLE_SOURCES_INVALID_FILE", |
2017 "INVALID_ANALYSIS_ROOT", | 2016 "INVALID_ANALYSIS_ROOT", |
2018 "INVALID_EXECUTION_CONTEXT", | 2017 "INVALID_EXECUTION_CONTEXT", |
2019 "INVALID_FILE_PATH_FORMAT", | 2018 "INVALID_FILE_PATH_FORMAT", |
2020 "INVALID_OVERLAY_CHANGE", | 2019 "INVALID_OVERLAY_CHANGE", |
2021 "INVALID_PARAMETER", | 2020 "INVALID_PARAMETER", |
2022 "INVALID_REQUEST", | 2021 "INVALID_REQUEST", |
2023 "NO_INDEX_GENERATED", | |
2024 "ORGANIZE_DIRECTIVES_ERROR", | 2022 "ORGANIZE_DIRECTIVES_ERROR", |
2025 "REFACTORING_REQUEST_CANCELLED", | 2023 "REFACTORING_REQUEST_CANCELLED", |
2026 "SERVER_ALREADY_STARTED", | 2024 "SERVER_ALREADY_STARTED", |
2027 "SERVER_ERROR", | 2025 "SERVER_ERROR", |
2028 "SORT_MEMBERS_INVALID_FILE", | 2026 "SORT_MEMBERS_INVALID_FILE", |
2029 "SORT_MEMBERS_PARSE_ERRORS", | 2027 "SORT_MEMBERS_PARSE_ERRORS", |
2030 "UNANALYZED_PRIORITY_FILES", | 2028 "UNANALYZED_PRIORITY_FILES", |
2031 "UNKNOWN_REQUEST", | 2029 "UNKNOWN_REQUEST", |
2032 "UNKNOWN_SOURCE", | 2030 "UNKNOWN_SOURCE", |
2033 "UNSUPPORTED_FEATURE" | 2031 "UNSUPPORTED_FEATURE" |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2338 | 2336 |
2339 /** | 2337 /** |
2340 * rename options | 2338 * rename options |
2341 * | 2339 * |
2342 * { | 2340 * { |
2343 * "newName": String | 2341 * "newName": String |
2344 * } | 2342 * } |
2345 */ | 2343 */ |
2346 final Matcher isRenameOptions = new LazyMatcher( | 2344 final Matcher isRenameOptions = new LazyMatcher( |
2347 () => new MatchesJsonObject("rename options", {"newName": isString})); | 2345 () => new MatchesJsonObject("rename options", {"newName": isString})); |
OLD | NEW |