mirror of
https://github.com/laravel-ls/protocol.git
synced 2026-06-16 03:54:56 +02:00
add CancelParams
This commit is contained in:
parent
59661d5961
commit
98467f4874
1 changed files with 7 additions and 0 deletions
|
|
@ -65,6 +65,13 @@ type InitializeResult struct {
|
|||
ServerInfo *ServerInfo `json:"serverInfo,omitempty"`
|
||||
}
|
||||
|
||||
// CancelParams - Parameters for the cancel request
|
||||
//
|
||||
// See https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#cancelRequest
|
||||
type CancelParams struct {
|
||||
Id string `json:"id"`
|
||||
}
|
||||
|
||||
// TraceValue - The LSP allows the client to control the tracing of the server.
|
||||
//
|
||||
// See https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#traceValue
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue