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

Side by Side Diff: pkg/analyzer_plugin/lib/protocol/protocol_constants.dart

Issue 2908523002: Add a getNavigation request for plugins (Closed)
Patch Set: Created 3 years, 7 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
OLDNEW
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 const String ANALYSIS_NOTIFICATION_ERRORS = 'analysis.errors'; 9 const String ANALYSIS_NOTIFICATION_ERRORS = 'analysis.errors';
10 const String ANALYSIS_NOTIFICATION_ERRORS_ERRORS = 'errors'; 10 const String ANALYSIS_NOTIFICATION_ERRORS_ERRORS = 'errors';
11 const String ANALYSIS_NOTIFICATION_ERRORS_FILE = 'file'; 11 const String ANALYSIS_NOTIFICATION_ERRORS_FILE = 'file';
12 const String ANALYSIS_NOTIFICATION_FOLDING = 'analysis.folding'; 12 const String ANALYSIS_NOTIFICATION_FOLDING = 'analysis.folding';
13 const String ANALYSIS_NOTIFICATION_FOLDING_FILE = 'file'; 13 const String ANALYSIS_NOTIFICATION_FOLDING_FILE = 'file';
14 const String ANALYSIS_NOTIFICATION_FOLDING_REGIONS = 'regions'; 14 const String ANALYSIS_NOTIFICATION_FOLDING_REGIONS = 'regions';
15 const String ANALYSIS_NOTIFICATION_HIGHLIGHTS = 'analysis.highlights'; 15 const String ANALYSIS_NOTIFICATION_HIGHLIGHTS = 'analysis.highlights';
16 const String ANALYSIS_NOTIFICATION_HIGHLIGHTS_FILE = 'file'; 16 const String ANALYSIS_NOTIFICATION_HIGHLIGHTS_FILE = 'file';
17 const String ANALYSIS_NOTIFICATION_HIGHLIGHTS_REGIONS = 'regions'; 17 const String ANALYSIS_NOTIFICATION_HIGHLIGHTS_REGIONS = 'regions';
18 const String ANALYSIS_NOTIFICATION_NAVIGATION = 'analysis.navigation'; 18 const String ANALYSIS_NOTIFICATION_NAVIGATION = 'analysis.navigation';
19 const String ANALYSIS_NOTIFICATION_NAVIGATION_FILE = 'file'; 19 const String ANALYSIS_NOTIFICATION_NAVIGATION_FILE = 'file';
20 const String ANALYSIS_NOTIFICATION_NAVIGATION_FILES = 'files'; 20 const String ANALYSIS_NOTIFICATION_NAVIGATION_FILES = 'files';
21 const String ANALYSIS_NOTIFICATION_NAVIGATION_REGIONS = 'regions'; 21 const String ANALYSIS_NOTIFICATION_NAVIGATION_REGIONS = 'regions';
22 const String ANALYSIS_NOTIFICATION_NAVIGATION_TARGETS = 'targets'; 22 const String ANALYSIS_NOTIFICATION_NAVIGATION_TARGETS = 'targets';
23 const String ANALYSIS_NOTIFICATION_OCCURRENCES = 'analysis.occurrences'; 23 const String ANALYSIS_NOTIFICATION_OCCURRENCES = 'analysis.occurrences';
24 const String ANALYSIS_NOTIFICATION_OCCURRENCES_FILE = 'file'; 24 const String ANALYSIS_NOTIFICATION_OCCURRENCES_FILE = 'file';
25 const String ANALYSIS_NOTIFICATION_OCCURRENCES_OCCURRENCES = 'occurrences'; 25 const String ANALYSIS_NOTIFICATION_OCCURRENCES_OCCURRENCES = 'occurrences';
26 const String ANALYSIS_NOTIFICATION_OUTLINE = 'analysis.outline'; 26 const String ANALYSIS_NOTIFICATION_OUTLINE = 'analysis.outline';
27 const String ANALYSIS_NOTIFICATION_OUTLINE_FILE = 'file'; 27 const String ANALYSIS_NOTIFICATION_OUTLINE_FILE = 'file';
28 const String ANALYSIS_NOTIFICATION_OUTLINE_OUTLINE = 'outline'; 28 const String ANALYSIS_NOTIFICATION_OUTLINE_OUTLINE = 'outline';
29 const String ANALYSIS_REQUEST_GET_NAVIGATION = 'analysis.getNavigation';
30 const String ANALYSIS_REQUEST_GET_NAVIGATION_FILE = 'file';
31 const String ANALYSIS_REQUEST_GET_NAVIGATION_LENGTH = 'length';
32 const String ANALYSIS_REQUEST_GET_NAVIGATION_OFFSET = 'offset';
29 const String ANALYSIS_REQUEST_HANDLE_WATCH_EVENTS = 33 const String ANALYSIS_REQUEST_HANDLE_WATCH_EVENTS =
30 'analysis.handleWatchEvents'; 34 'analysis.handleWatchEvents';
31 const String ANALYSIS_REQUEST_HANDLE_WATCH_EVENTS_EVENTS = 'events'; 35 const String ANALYSIS_REQUEST_HANDLE_WATCH_EVENTS_EVENTS = 'events';
32 const String ANALYSIS_REQUEST_REANALYZE = 'analysis.reanalyze'; 36 const String ANALYSIS_REQUEST_REANALYZE = 'analysis.reanalyze';
33 const String ANALYSIS_REQUEST_REANALYZE_ROOTS = 'roots'; 37 const String ANALYSIS_REQUEST_REANALYZE_ROOTS = 'roots';
34 const String ANALYSIS_REQUEST_SET_CONTEXT_BUILDER_OPTIONS = 38 const String ANALYSIS_REQUEST_SET_CONTEXT_BUILDER_OPTIONS =
35 'analysis.setContextBuilderOptions'; 39 'analysis.setContextBuilderOptions';
36 const String ANALYSIS_REQUEST_SET_CONTEXT_BUILDER_OPTIONS_OPTIONS = 'options'; 40 const String ANALYSIS_REQUEST_SET_CONTEXT_BUILDER_OPTIONS_OPTIONS = 'options';
37 const String ANALYSIS_REQUEST_SET_CONTEXT_ROOTS = 'analysis.setContextRoots'; 41 const String ANALYSIS_REQUEST_SET_CONTEXT_ROOTS = 'analysis.setContextRoots';
38 const String ANALYSIS_REQUEST_SET_CONTEXT_ROOTS_ROOTS = 'roots'; 42 const String ANALYSIS_REQUEST_SET_CONTEXT_ROOTS_ROOTS = 'roots';
39 const String ANALYSIS_REQUEST_SET_PRIORITY_FILES = 'analysis.setPriorityFiles'; 43 const String ANALYSIS_REQUEST_SET_PRIORITY_FILES = 'analysis.setPriorityFiles';
40 const String ANALYSIS_REQUEST_SET_PRIORITY_FILES_FILES = 'files'; 44 const String ANALYSIS_REQUEST_SET_PRIORITY_FILES_FILES = 'files';
41 const String ANALYSIS_REQUEST_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions'; 45 const String ANALYSIS_REQUEST_SET_SUBSCRIPTIONS = 'analysis.setSubscriptions';
42 const String ANALYSIS_REQUEST_SET_SUBSCRIPTIONS_SUBSCRIPTIONS = 'subscriptions'; 46 const String ANALYSIS_REQUEST_SET_SUBSCRIPTIONS_SUBSCRIPTIONS = 'subscriptions';
43 const String ANALYSIS_REQUEST_UPDATE_CONTENT = 'analysis.updateContent'; 47 const String ANALYSIS_REQUEST_UPDATE_CONTENT = 'analysis.updateContent';
44 const String ANALYSIS_REQUEST_UPDATE_CONTENT_FILES = 'files'; 48 const String ANALYSIS_REQUEST_UPDATE_CONTENT_FILES = 'files';
49 const String ANALYSIS_RESPONSE_GET_NAVIGATION_FILES = 'files';
50 const String ANALYSIS_RESPONSE_GET_NAVIGATION_REGIONS = 'regions';
51 const String ANALYSIS_RESPONSE_GET_NAVIGATION_TARGETS = 'targets';
45 const String COMPLETION_REQUEST_GET_SUGGESTIONS = 'completion.getSuggestions'; 52 const String COMPLETION_REQUEST_GET_SUGGESTIONS = 'completion.getSuggestions';
46 const String COMPLETION_REQUEST_GET_SUGGESTIONS_FILE = 'file'; 53 const String COMPLETION_REQUEST_GET_SUGGESTIONS_FILE = 'file';
47 const String COMPLETION_REQUEST_GET_SUGGESTIONS_OFFSET = 'offset'; 54 const String COMPLETION_REQUEST_GET_SUGGESTIONS_OFFSET = 'offset';
48 const String COMPLETION_RESPONSE_GET_SUGGESTIONS_REPLACEMENTLENGTH = 55 const String COMPLETION_RESPONSE_GET_SUGGESTIONS_REPLACEMENTLENGTH =
49 'replacementLength'; 56 'replacementLength';
50 const String COMPLETION_RESPONSE_GET_SUGGESTIONS_REPLACEMENTOFFSET = 57 const String COMPLETION_RESPONSE_GET_SUGGESTIONS_REPLACEMENTOFFSET =
51 'replacementOffset'; 58 'replacementOffset';
52 const String COMPLETION_RESPONSE_GET_SUGGESTIONS_RESULTS = 'results'; 59 const String COMPLETION_RESPONSE_GET_SUGGESTIONS_RESULTS = 'results';
53 const String EDIT_REQUEST_GET_ASSISTS = 'edit.getAssists'; 60 const String EDIT_REQUEST_GET_ASSISTS = 'edit.getAssists';
54 const String EDIT_REQUEST_GET_ASSISTS_FILE = 'file'; 61 const String EDIT_REQUEST_GET_ASSISTS_FILE = 'file';
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 const String PLUGIN_REQUEST_VERSION_CHECK = 'plugin.versionCheck'; 93 const String PLUGIN_REQUEST_VERSION_CHECK = 'plugin.versionCheck';
87 const String PLUGIN_REQUEST_VERSION_CHECK_BYTESTOREPATH = 'byteStorePath'; 94 const String PLUGIN_REQUEST_VERSION_CHECK_BYTESTOREPATH = 'byteStorePath';
88 const String PLUGIN_REQUEST_VERSION_CHECK_SDKPATH = 'sdkPath'; 95 const String PLUGIN_REQUEST_VERSION_CHECK_SDKPATH = 'sdkPath';
89 const String PLUGIN_REQUEST_VERSION_CHECK_VERSION = 'version'; 96 const String PLUGIN_REQUEST_VERSION_CHECK_VERSION = 'version';
90 const String PLUGIN_RESPONSE_VERSION_CHECK_CONTACTINFO = 'contactInfo'; 97 const String PLUGIN_RESPONSE_VERSION_CHECK_CONTACTINFO = 'contactInfo';
91 const String PLUGIN_RESPONSE_VERSION_CHECK_INTERESTINGFILES = 98 const String PLUGIN_RESPONSE_VERSION_CHECK_INTERESTINGFILES =
92 'interestingFiles'; 99 'interestingFiles';
93 const String PLUGIN_RESPONSE_VERSION_CHECK_ISCOMPATIBLE = 'isCompatible'; 100 const String PLUGIN_RESPONSE_VERSION_CHECK_ISCOMPATIBLE = 'isCompatible';
94 const String PLUGIN_RESPONSE_VERSION_CHECK_NAME = 'name'; 101 const String PLUGIN_RESPONSE_VERSION_CHECK_NAME = 'name';
95 const String PLUGIN_RESPONSE_VERSION_CHECK_VERSION = 'version'; 102 const String PLUGIN_RESPONSE_VERSION_CHECK_VERSION = 'version';
OLDNEW
« no previous file with comments | « pkg/analyzer_plugin/lib/plugin/plugin.dart ('k') | pkg/analyzer_plugin/lib/protocol/protocol_generated.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698