-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand.go
226 lines (190 loc) · 7.24 KB
/
command.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package lsp
// Command represents a reference to a command. Provides a title which will be
// used to represent a command in the UI. Commands are identified by a string
// identifier. The recommended way to handle commands is to implement their
// execution on the server side if the client and server provides the
// corresponding capabilities. Alternatively the tool extension code could
// handle the command. The protocol currently doesn’t specify a set of
// well-known commands.
type Command struct {
// Title of the command, like `save`.
Title string `json:"title"`
// The identifier of the actual command handler.
Command string `json:"command"`
// Arguments that the command handler should be invoked with.
Arguments []interface{} `json:"arguments"`
}
// ExecuteCommandOptions contains the options for the command execution handler.
type ExecuteCommandOptions struct {
WorkDoneProgressOptions
// The commands to be executed on the server.
Commands []string `json:"commands"`
}
// ExecuteCommandRegistrationOptions contains the command execution registration
// options.
type ExecuteCommandRegistrationOptions struct {
ExecuteCommandOptions
}
// ExecuteCommandParams contains the fields sent in a `workspace/executeCommand`
// request.
type ExecuteCommandParams struct {
WorkDoneProgressParams
// The identifier of the actual command handler.
Command string `json:"command"`
// Arguments that the command should be invoked with.
Arguments interface{} `json:"arguments,omitempty"`
}
// CodeActionKind defines a set of predefined code action kinds.
type CodeActionKind string
const (
// CAKEmpty defines an empty kind.
CAKEmpty CodeActionKind = ""
// CAKQuickFix is the base kind for quickfix actions: 'quickfix'.
CAKQuickFix = "quickfix"
// CAKRefactor is the base kind for refactoring actions: 'refactor'.
CAKRefactor = "refactor"
// CAKRefactorExtract is the base kind for refactoring extraction actions:
// 'refactor.extract'.
//
// Example extract actions:
// - Extract method
// - Extract function
// - Extract variable
// - Extract interface from class
// - ...
CAKRefactorExtract = "refactor.extract"
// CAKRefactorInline is the base kind for refactoring inline actions:
// 'refactor.inline'.
//
// Example inline actions:
//
// - Inline function
// - Inline variable
// - Inline constant
// - ...
CAKRefactorInline = "refactor.inline"
// CAKRefactorRewrite is the base kind for refactoring rewrite actions:
// 'refactor.rewrite'.
//
// Example rewrite actions:
//
// - Convert JavaScript function to class
// - Add or remove parameter
// - Encapsulate field
// - Make method static
// - Move method to base class
// - ...
CAKRefactorRewrite = "refactor.rewrite"
// CAKSource is the base kind for source actions: `source`.
//
// Source code actions apply to the entire file.
CAKSource = "source"
// CAKSourceOrganizeImports is the base kind for an organize imports source
// action `source.organizeImports`.
CAKSourceOrganizeImports = "source.organizeImports"
)
// CodeActionContext contains additional diagnostic information about the
// context in which a code action is run.
type CodeActionContext struct {
// An array of diagnostics known on the client side overlapping the range
// provided to the `textDocument/codeAction` request.
// They are provided so that the server knows which errors are currently
// presented to the user for the given range. There is no guarantee that
// these accurately reflect the error state of the resource.
// The primary parameter to compute code actions is the provided range.
Diagnostics []Diagnostic `json:"diagnostics"`
// Requested kind of actions to return.
//
// Actions not of this kind are filtered out by the client before
// being shown, so servers can omit computing them.
Only []CodeActionKind `json:"only,omitempty"`
}
// CodeAction represents a change that can be performed in code.
// For example, to fix a problem or to refactor code.
//
// A CodeAction must set either `edit` and/or a `command`.
// If both are supplied, the `edit` is applied first, then the `command`
// is executed.
type CodeAction struct {
// A short, human-readable, title for this code action.
Title string `json:"title"`
// The kind of the code action. Used to filter code actions.
Kind CodeActionKind `json:"kind,omitempty"`
// The diagnostics that this code action resolves.
Diagnostics []Diagnostic `json:"diagnostics,omitempty"`
// Marks this as a preferred action.
// Preferred actions are used by the `auto fix` command and can be
// targeted by keybindings.
//
// A quick fix should be marked preferred if it properly addresses the
// underlying error.
// A refactoring should be marked preferred if it is the most reasonable
// choice of actions to take.
IsPreferred bool `json:"isPreferred,omitempty"`
// Marks that the code action cannot currently be applied.
//
// Clients should follow the following guidelines regarding disabled code
// actions:
//
// - Disabled code actions are not shown in automatic lightbulbs code
// action menus.
//
// - Disabled actions are shown as faded out in the code action menu when
// the user request a more specific type of code action, such as
// refactorings.
//
// - If the user has a keybinding that auto applies a code action and only
// a disabled code actions are returned, the client should show the user
// an error message with `reason` in the editor.
//
// @since 3.16.0
Disabled struct {
// Human readable description of why the code action is currently disabled.
//
// This is displayed in the code actions UI.
Reason string `json:"reason"`
} `json:"disabled,omitempty"`
// The workspace edit this code action performs.
Edit WorkspaceEdit `json:"edit,omitempty"`
// A command this code action executes. If a code action
// provides an edit and a command, first the edit is
// executed and then the command.
Command Command `json:"command,omitempty"`
// A data entry field that is preserved on a code action between a
// `textDocument/codeAction` and a `codeAction/resolve` request.
//
// @since 3.16.0
Data interface{} `json:"data,omitempty"`
}
// CodeActionOptions contains the options for the code action handler.
type CodeActionOptions struct {
WorkDoneProgressOptions
// CodeActionKinds that this server may return.
//
// The list of kinds may be generic, such as `CodeActionKind.Refactor`,
// or the server may list out every specific kind they provide.
CodeActionKinds []CodeActionKind `json:"codeActionKinds,omitempty"`
// The server provides support to resolve additional information for a code
// action.
//
// @since 3.16.0
ResolveProvider bool `json:"resolveProvider,omitempty"`
}
// CodeActionRegistrationOptions contains the options for the code action
// handler registration.
type CodeActionRegistrationOptions struct {
TextDocumentRegistrationOptions
CodeActionOptions
}
// CodeActionParams contains the fields sent in a `textDocument/codeAction`
// request.
type CodeActionParams struct {
WorkDoneProgressParams
PartialResultParams
// The document in which the command was invoked.
TextDocument TextDocumentIdentifier `json:"textDocument"`
// The range for which the command was invoked.
Range Range `json:"range"`
// Context carrying additional information.
Context CodeActionContext `json:"context"`
}