lsproto

package
v0.0.0-...-09edcb8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 10, 2025 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidHeader        = errors.New("lsp: invalid header")
	ErrInvalidContentLength = errors.New("lsp: invalid content length")
	ErrNoContentLength      = errors.New("lsp: no content length")
)
View Source
var (
	// Defined by JSON-RPC
	ErrParseError     = &ErrorCode{"ParseError", -32700}
	ErrInvalidRequest = &ErrorCode{"InvalidRequest", -32600}
	ErrMethodNotFound = &ErrorCode{"MethodNotFound", -32601}
	ErrInvalidParams  = &ErrorCode{"InvalidParams", -32602}
	ErrInternalError  = &ErrorCode{"InternalError", -32603}

	// Error code indicating that a server received a notification or
	// request before the server has received the `initialize` request.
	ErrServerNotInitialized = &ErrorCode{"ServerNotInitialized", -32002}
	ErrUnknownErrorCode     = &ErrorCode{"UnknownErrorCode", -32001}

	// A request failed but it was syntactically correct, e.g the
	// method name was known and the parameters were valid. The error
	// message should contain human readable information about why
	// the request failed.
	ErrRequestFailed = &ErrorCode{"RequestFailed", -32803}

	// The server cancelled the request. This error code should
	// only be used for requests that explicitly support being
	// server cancellable.
	ErrServerCancelled = &ErrorCode{"ServerCancelled", -32802}

	// The server detected that the content of a document got
	// modified outside normal conditions. A server should
	// NOT send this error code if it detects a content change
	// in it unprocessed messages. The result even computed
	// on an older state might still be useful for the client.
	//
	// If a client decides that a result is not of any use anymore
	// the client should cancel the request.
	ErrContentModified = &ErrorCode{"ContentModified", -32801}

	// The client has canceled a request and a server has detected
	// the cancel.
	ErrRequestCancelled = &ErrorCode{"RequestCancelled", -32800}
)

Type mapping info for `callHierarchy/incomingCalls`

Type mapping info for `callHierarchy/outgoingCalls`

View Source
var CancelRequestInfo = NotificationInfo[*CancelParams]{Method: MethodCancelRequest}

Type mapping info for `$/cancelRequest`

Type mapping info for `client/registerCapability`

Type mapping info for `client/unregisterCapability`

Type mapping info for `codeAction/resolve`

Type mapping info for `codeLens/resolve`

Type mapping info for `completionItem/resolve`

Type mapping info for `documentLink/resolve`

View Source
var ErrInvalidJSONRPCVersion = errors.New("invalid JSON-RPC version")
View Source
var ExitInfo = NotificationInfo[any]{Method: MethodExit}

Type mapping info for `exit`

Type mapping info for `initialize`

Type mapping info for `initialized`

Type mapping info for `inlayHint/resolve`

Type mapping info for `$/logTrace`

Type mapping info for `notebookDocument/didChange`

Type mapping info for `notebookDocument/didClose`

Type mapping info for `notebookDocument/didOpen`

Type mapping info for `notebookDocument/didSave`

Type mapping info for `$/progress`

Type mapping info for `$/setTrace`

Type mapping info for `shutdown`

View Source
var TelemetryEventInfo = NotificationInfo[any]{Method: MethodTelemetryEvent}

Type mapping info for `telemetry/event`

Type mapping info for `textDocument/codeAction`

Type mapping info for `textDocument/codeLens`

Type mapping info for `textDocument/colorPresentation`

Type mapping info for `textDocument/completion`

Type mapping info for `textDocument/declaration`

Type mapping info for `textDocument/definition`

Type mapping info for `textDocument/diagnostic`

Type mapping info for `textDocument/didChange`

Type mapping info for `textDocument/didClose`

Type mapping info for `textDocument/didOpen`

Type mapping info for `textDocument/didSave`

Type mapping info for `textDocument/documentColor`

Type mapping info for `textDocument/documentHighlight`

Type mapping info for `textDocument/documentLink`

Type mapping info for `textDocument/documentSymbol`

Type mapping info for `textDocument/foldingRange`

Type mapping info for `textDocument/formatting`

View Source
var TextDocumentHoverInfo = RequestInfo[*HoverParams, HoverResponse]{Method: MethodTextDocumentHover}

Type mapping info for `textDocument/hover`

Type mapping info for `textDocument/implementation`

Type mapping info for `textDocument/inlayHint`

Type mapping info for `textDocument/inlineCompletion`

Type mapping info for `textDocument/inlineValue`

Type mapping info for `textDocument/linkedEditingRange`

Type mapping info for `textDocument/moniker`

Type mapping info for `textDocument/onTypeFormatting`

Type mapping info for `textDocument/prepareCallHierarchy`

Type mapping info for `textDocument/prepareRename`

Type mapping info for `textDocument/prepareTypeHierarchy`

Type mapping info for `textDocument/publishDiagnostics`

Type mapping info for `textDocument/rangeFormatting`

Type mapping info for `textDocument/rangesFormatting`

Type mapping info for `textDocument/references`

Type mapping info for `textDocument/rename`

Type mapping info for `textDocument/selectionRange`

Type mapping info for `textDocument/semanticTokens/full/delta`

Type mapping info for `textDocument/semanticTokens/full`

Type mapping info for `textDocument/semanticTokens/range`

Type mapping info for `textDocument/signatureHelp`

Type mapping info for `textDocument/typeDefinition`

Type mapping info for `textDocument/willSave`

Type mapping info for `textDocument/willSaveWaitUntil`

Type mapping info for `typeHierarchy/subtypes`

Type mapping info for `typeHierarchy/supertypes`

Type mapping info for `window/logMessage`

Type mapping info for `window/showDocument`

Type mapping info for `window/showMessage`

Type mapping info for `window/showMessageRequest`

Type mapping info for `window/workDoneProgress/cancel`

Type mapping info for `window/workDoneProgress/create`

Type mapping info for `workspace/applyEdit`

View Source
var WorkspaceCodeLensRefreshInfo = RequestInfo[any, CodeLensRefreshResponse]{Method: MethodWorkspaceCodeLensRefresh}

Type mapping info for `workspace/codeLens/refresh`

Type mapping info for `workspace/configuration`

Type mapping info for `workspace/diagnostic`

Type mapping info for `workspace/diagnostic/refresh`

Type mapping info for `workspace/didChangeConfiguration`

Type mapping info for `workspace/didChangeWatchedFiles`

Type mapping info for `workspace/didChangeWorkspaceFolders`

View Source
var WorkspaceDidCreateFilesInfo = NotificationInfo[*CreateFilesParams]{Method: MethodWorkspaceDidCreateFiles}

Type mapping info for `workspace/didCreateFiles`

View Source
var WorkspaceDidDeleteFilesInfo = NotificationInfo[*DeleteFilesParams]{Method: MethodWorkspaceDidDeleteFiles}

Type mapping info for `workspace/didDeleteFiles`

View Source
var WorkspaceDidRenameFilesInfo = NotificationInfo[*RenameFilesParams]{Method: MethodWorkspaceDidRenameFiles}

Type mapping info for `workspace/didRenameFiles`

Type mapping info for `workspace/executeCommand`

Type mapping info for `workspace/foldingRange/refresh`

Type mapping info for `workspace/inlayHint/refresh`

Type mapping info for `workspace/inlineValue/refresh`

Type mapping info for `workspace/semanticTokens/refresh`

Type mapping info for `workspace/symbol`

Type mapping info for `workspaceSymbol/resolve`

Type mapping info for `workspace/textDocumentContent`

Type mapping info for `workspace/textDocumentContent/refresh`

Type mapping info for `workspace/willCreateFiles`

Type mapping info for `workspace/willDeleteFiles`

Type mapping info for `workspace/willRenameFiles`

Type mapping info for `workspace/workspaceFolders`

Functions

This section is empty.

Types

type AnnotatedTextEdit

type AnnotatedTextEdit struct {
	// The range of the text document to be manipulated. To insert
	// text into a document create a range where start === end.
	Range Range `json:"range"`

	// The string to be inserted. For delete operations use an
	// empty string.
	NewText string `json:"newText"`

	// The actual identifier of the change annotation
	AnnotationId string `json:"annotationId"`
}

A special text edit with an additional change annotation.

Since: 3.16.0.

func (*AnnotatedTextEdit) UnmarshalJSONFrom

func (s *AnnotatedTextEdit) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ApplyKind

type ApplyKind uint32

Defines how values from a set of defaults and an individual item will be merged.

Since: 3.18.0

const (
	// The value from the individual item (if provided and not `null`) will be
	// used instead of the default.
	ApplyKindReplace ApplyKind = 1
	// The value from the item will be merged with the default.
	//
	// The specific rules for mergeing values are defined against each field
	// that supports merging.
	ApplyKindMerge ApplyKind = 2
)

type ApplyWorkspaceEditParams

type ApplyWorkspaceEditParams struct {
	// An optional label of the workspace edit. This label is
	// presented in the user interface for example on an undo
	// stack to undo the workspace edit.
	Label *string `json:"label,omitzero"`

	// The edits to apply.
	Edit *WorkspaceEdit `json:"edit"`

	// Additional data about the edit.
	//
	// Since: 3.18.0
	//
	// Proposed.
	Metadata *WorkspaceEditMetadata `json:"metadata,omitzero"`
}

The parameters passed via an apply workspace edit request.

func (*ApplyWorkspaceEditParams) UnmarshalJSONFrom

func (s *ApplyWorkspaceEditParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ApplyWorkspaceEditResponse

type ApplyWorkspaceEditResponse = *ApplyWorkspaceEditResult

Response type for `workspace/applyEdit`

type ApplyWorkspaceEditResult

type ApplyWorkspaceEditResult struct {
	// Indicates whether the edit was applied or not.
	Applied bool `json:"applied"`

	// An optional textual description for why the edit was not applied.
	// This may be used by the server for diagnostic logging or to provide
	// a suitable error for a request that triggered the edit.
	FailureReason *string `json:"failureReason,omitzero"`

	// Depending on the client's failure handling strategy `failedChange` might
	// contain the index of the change that failed. This property is only available
	// if the client signals a `failureHandlingStrategy` in its client capabilities.
	FailedChange *uint32 `json:"failedChange,omitzero"`
}

The result returned from the apply workspace edit request.

Since: 3.17 renamed from ApplyWorkspaceEditResponse

func (*ApplyWorkspaceEditResult) UnmarshalJSONFrom

func (s *ApplyWorkspaceEditResult) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BaseReader

type BaseReader struct {
	// contains filtered or unexported fields
}

func NewBaseReader

func NewBaseReader(r io.Reader) *BaseReader

func (*BaseReader) Read

func (r *BaseReader) Read() ([]byte, error)

type BaseSymbolInformation

type BaseSymbolInformation struct {
	// The name of this symbol.
	Name string `json:"name"`

	// The kind of this symbol.
	Kind SymbolKind `json:"kind"`

	// Tags for this symbol.
	//
	// Since: 3.16.0
	Tags *[]SymbolTag `json:"tags,omitzero"`

	// The name of the symbol containing this symbol. This information is for
	// user interface purposes (e.g. to render a qualifier in the user interface
	// if necessary). It can't be used to re-infer a hierarchy for the document
	// symbols.
	ContainerName *string `json:"containerName,omitzero"`
}

A base for all symbol information.

func (*BaseSymbolInformation) UnmarshalJSONFrom

func (s *BaseSymbolInformation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BaseWriter

type BaseWriter struct {
	// contains filtered or unexported fields
}

func NewBaseWriter

func NewBaseWriter(w io.Writer) *BaseWriter

func (*BaseWriter) Write

func (w *BaseWriter) Write(data []byte) error

type BooleanOrCallHierarchyOptionsOrCallHierarchyRegistrationOptions

type BooleanOrCallHierarchyOptionsOrCallHierarchyRegistrationOptions struct {
	Boolean                          *bool
	CallHierarchyOptions             *CallHierarchyOptions
	CallHierarchyRegistrationOptions *CallHierarchyRegistrationOptions
}

func (*BooleanOrCallHierarchyOptionsOrCallHierarchyRegistrationOptions) MarshalJSONTo

func (*BooleanOrCallHierarchyOptionsOrCallHierarchyRegistrationOptions) UnmarshalJSONFrom

type BooleanOrClientSemanticTokensRequestFullDelta

type BooleanOrClientSemanticTokensRequestFullDelta struct {
	Boolean                              *bool
	ClientSemanticTokensRequestFullDelta *ClientSemanticTokensRequestFullDelta
}

func (*BooleanOrClientSemanticTokensRequestFullDelta) MarshalJSONTo

func (*BooleanOrClientSemanticTokensRequestFullDelta) UnmarshalJSONFrom

type BooleanOrCodeActionOptions

type BooleanOrCodeActionOptions struct {
	Boolean           *bool
	CodeActionOptions *CodeActionOptions
}

func (*BooleanOrCodeActionOptions) MarshalJSONTo

func (o *BooleanOrCodeActionOptions) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrCodeActionOptions) UnmarshalJSONFrom

func (o *BooleanOrCodeActionOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrDeclarationOptionsOrDeclarationRegistrationOptions

type BooleanOrDeclarationOptionsOrDeclarationRegistrationOptions struct {
	Boolean                        *bool
	DeclarationOptions             *DeclarationOptions
	DeclarationRegistrationOptions *DeclarationRegistrationOptions
}

func (*BooleanOrDeclarationOptionsOrDeclarationRegistrationOptions) MarshalJSONTo

func (*BooleanOrDeclarationOptionsOrDeclarationRegistrationOptions) UnmarshalJSONFrom

type BooleanOrDefinitionOptions

type BooleanOrDefinitionOptions struct {
	Boolean           *bool
	DefinitionOptions *DefinitionOptions
}

func (*BooleanOrDefinitionOptions) MarshalJSONTo

func (o *BooleanOrDefinitionOptions) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrDefinitionOptions) UnmarshalJSONFrom

func (o *BooleanOrDefinitionOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrDocumentColorOptionsOrDocumentColorRegistrationOptions

type BooleanOrDocumentColorOptionsOrDocumentColorRegistrationOptions struct {
	Boolean                          *bool
	DocumentColorOptions             *DocumentColorOptions
	DocumentColorRegistrationOptions *DocumentColorRegistrationOptions
}

func (*BooleanOrDocumentColorOptionsOrDocumentColorRegistrationOptions) MarshalJSONTo

func (*BooleanOrDocumentColorOptionsOrDocumentColorRegistrationOptions) UnmarshalJSONFrom

type BooleanOrDocumentFormattingOptions

type BooleanOrDocumentFormattingOptions struct {
	Boolean                   *bool
	DocumentFormattingOptions *DocumentFormattingOptions
}

func (*BooleanOrDocumentFormattingOptions) MarshalJSONTo

func (*BooleanOrDocumentFormattingOptions) UnmarshalJSONFrom

func (o *BooleanOrDocumentFormattingOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrDocumentHighlightOptions

type BooleanOrDocumentHighlightOptions struct {
	Boolean                  *bool
	DocumentHighlightOptions *DocumentHighlightOptions
}

func (*BooleanOrDocumentHighlightOptions) MarshalJSONTo

func (*BooleanOrDocumentHighlightOptions) UnmarshalJSONFrom

func (o *BooleanOrDocumentHighlightOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrDocumentRangeFormattingOptions

type BooleanOrDocumentRangeFormattingOptions struct {
	Boolean                        *bool
	DocumentRangeFormattingOptions *DocumentRangeFormattingOptions
}

func (*BooleanOrDocumentRangeFormattingOptions) MarshalJSONTo

func (*BooleanOrDocumentRangeFormattingOptions) UnmarshalJSONFrom

type BooleanOrDocumentSymbolOptions

type BooleanOrDocumentSymbolOptions struct {
	Boolean               *bool
	DocumentSymbolOptions *DocumentSymbolOptions
}

func (*BooleanOrDocumentSymbolOptions) MarshalJSONTo

func (o *BooleanOrDocumentSymbolOptions) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrDocumentSymbolOptions) UnmarshalJSONFrom

func (o *BooleanOrDocumentSymbolOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrEmptyObject

type BooleanOrEmptyObject struct {
	Boolean     *bool
	EmptyObject *struct{}
}

func (*BooleanOrEmptyObject) MarshalJSONTo

func (o *BooleanOrEmptyObject) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrEmptyObject) UnmarshalJSONFrom

func (o *BooleanOrEmptyObject) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrFoldingRangeOptionsOrFoldingRangeRegistrationOptions

type BooleanOrFoldingRangeOptionsOrFoldingRangeRegistrationOptions struct {
	Boolean                         *bool
	FoldingRangeOptions             *FoldingRangeOptions
	FoldingRangeRegistrationOptions *FoldingRangeRegistrationOptions
}

func (*BooleanOrFoldingRangeOptionsOrFoldingRangeRegistrationOptions) MarshalJSONTo

func (*BooleanOrFoldingRangeOptionsOrFoldingRangeRegistrationOptions) UnmarshalJSONFrom

type BooleanOrHoverOptions

type BooleanOrHoverOptions struct {
	Boolean      *bool
	HoverOptions *HoverOptions
}

func (*BooleanOrHoverOptions) MarshalJSONTo

func (o *BooleanOrHoverOptions) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrHoverOptions) UnmarshalJSONFrom

func (o *BooleanOrHoverOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrImplementationOptionsOrImplementationRegistrationOptions

type BooleanOrImplementationOptionsOrImplementationRegistrationOptions struct {
	Boolean                           *bool
	ImplementationOptions             *ImplementationOptions
	ImplementationRegistrationOptions *ImplementationRegistrationOptions
}

func (*BooleanOrImplementationOptionsOrImplementationRegistrationOptions) MarshalJSONTo

func (*BooleanOrImplementationOptionsOrImplementationRegistrationOptions) UnmarshalJSONFrom

type BooleanOrInlayHintOptionsOrInlayHintRegistrationOptions

type BooleanOrInlayHintOptionsOrInlayHintRegistrationOptions struct {
	Boolean                      *bool
	InlayHintOptions             *InlayHintOptions
	InlayHintRegistrationOptions *InlayHintRegistrationOptions
}

func (*BooleanOrInlayHintOptionsOrInlayHintRegistrationOptions) MarshalJSONTo

func (*BooleanOrInlayHintOptionsOrInlayHintRegistrationOptions) UnmarshalJSONFrom

type BooleanOrInlineCompletionOptions

type BooleanOrInlineCompletionOptions struct {
	Boolean                 *bool
	InlineCompletionOptions *InlineCompletionOptions
}

func (*BooleanOrInlineCompletionOptions) MarshalJSONTo

func (o *BooleanOrInlineCompletionOptions) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrInlineCompletionOptions) UnmarshalJSONFrom

func (o *BooleanOrInlineCompletionOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrInlineValueOptionsOrInlineValueRegistrationOptions

type BooleanOrInlineValueOptionsOrInlineValueRegistrationOptions struct {
	Boolean                        *bool
	InlineValueOptions             *InlineValueOptions
	InlineValueRegistrationOptions *InlineValueRegistrationOptions
}

func (*BooleanOrInlineValueOptionsOrInlineValueRegistrationOptions) MarshalJSONTo

func (*BooleanOrInlineValueOptionsOrInlineValueRegistrationOptions) UnmarshalJSONFrom

type BooleanOrLinkedEditingRangeOptionsOrLinkedEditingRangeRegistrationOptions

type BooleanOrLinkedEditingRangeOptionsOrLinkedEditingRangeRegistrationOptions struct {
	Boolean                               *bool
	LinkedEditingRangeOptions             *LinkedEditingRangeOptions
	LinkedEditingRangeRegistrationOptions *LinkedEditingRangeRegistrationOptions
}

func (*BooleanOrLinkedEditingRangeOptionsOrLinkedEditingRangeRegistrationOptions) MarshalJSONTo

func (*BooleanOrLinkedEditingRangeOptionsOrLinkedEditingRangeRegistrationOptions) UnmarshalJSONFrom

type BooleanOrMonikerOptionsOrMonikerRegistrationOptions

type BooleanOrMonikerOptionsOrMonikerRegistrationOptions struct {
	Boolean                    *bool
	MonikerOptions             *MonikerOptions
	MonikerRegistrationOptions *MonikerRegistrationOptions
}

func (*BooleanOrMonikerOptionsOrMonikerRegistrationOptions) MarshalJSONTo

func (*BooleanOrMonikerOptionsOrMonikerRegistrationOptions) UnmarshalJSONFrom

type BooleanOrReferenceOptions

type BooleanOrReferenceOptions struct {
	Boolean          *bool
	ReferenceOptions *ReferenceOptions
}

func (*BooleanOrReferenceOptions) MarshalJSONTo

func (o *BooleanOrReferenceOptions) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrReferenceOptions) UnmarshalJSONFrom

func (o *BooleanOrReferenceOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrRenameOptions

type BooleanOrRenameOptions struct {
	Boolean       *bool
	RenameOptions *RenameOptions
}

func (*BooleanOrRenameOptions) MarshalJSONTo

func (o *BooleanOrRenameOptions) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrRenameOptions) UnmarshalJSONFrom

func (o *BooleanOrRenameOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrSaveOptions

type BooleanOrSaveOptions struct {
	Boolean     *bool
	SaveOptions *SaveOptions
}

func (*BooleanOrSaveOptions) MarshalJSONTo

func (o *BooleanOrSaveOptions) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrSaveOptions) UnmarshalJSONFrom

func (o *BooleanOrSaveOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions

type BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions struct {
	Boolean                           *bool
	SelectionRangeOptions             *SelectionRangeOptions
	SelectionRangeRegistrationOptions *SelectionRangeRegistrationOptions
}

func (*BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions) MarshalJSONTo

func (*BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions) UnmarshalJSONFrom

type BooleanOrSemanticTokensFullDelta

type BooleanOrSemanticTokensFullDelta struct {
	Boolean                 *bool
	SemanticTokensFullDelta *SemanticTokensFullDelta
}

func (*BooleanOrSemanticTokensFullDelta) MarshalJSONTo

func (o *BooleanOrSemanticTokensFullDelta) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrSemanticTokensFullDelta) UnmarshalJSONFrom

func (o *BooleanOrSemanticTokensFullDelta) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type BooleanOrTypeDefinitionOptionsOrTypeDefinitionRegistrationOptions

type BooleanOrTypeDefinitionOptionsOrTypeDefinitionRegistrationOptions struct {
	Boolean                           *bool
	TypeDefinitionOptions             *TypeDefinitionOptions
	TypeDefinitionRegistrationOptions *TypeDefinitionRegistrationOptions
}

func (*BooleanOrTypeDefinitionOptionsOrTypeDefinitionRegistrationOptions) MarshalJSONTo

func (*BooleanOrTypeDefinitionOptionsOrTypeDefinitionRegistrationOptions) UnmarshalJSONFrom

type BooleanOrTypeHierarchyOptionsOrTypeHierarchyRegistrationOptions

type BooleanOrTypeHierarchyOptionsOrTypeHierarchyRegistrationOptions struct {
	Boolean                          *bool
	TypeHierarchyOptions             *TypeHierarchyOptions
	TypeHierarchyRegistrationOptions *TypeHierarchyRegistrationOptions
}

func (*BooleanOrTypeHierarchyOptionsOrTypeHierarchyRegistrationOptions) MarshalJSONTo

func (*BooleanOrTypeHierarchyOptionsOrTypeHierarchyRegistrationOptions) UnmarshalJSONFrom

type BooleanOrWorkspaceSymbolOptions

type BooleanOrWorkspaceSymbolOptions struct {
	Boolean                *bool
	WorkspaceSymbolOptions *WorkspaceSymbolOptions
}

func (*BooleanOrWorkspaceSymbolOptions) MarshalJSONTo

func (o *BooleanOrWorkspaceSymbolOptions) MarshalJSONTo(enc *jsontext.Encoder) error

func (*BooleanOrWorkspaceSymbolOptions) UnmarshalJSONFrom

func (o *BooleanOrWorkspaceSymbolOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyClientCapabilities

type CallHierarchyClientCapabilities struct {
	// Whether implementation supports dynamic registration. If this is set to `true`
	// the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
	// return value for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Since: 3.16.0

type CallHierarchyIncomingCall

type CallHierarchyIncomingCall struct {
	// The item that makes the call.
	From *CallHierarchyItem `json:"from"`

	// The ranges at which the calls appear. This is relative to the caller
	// denoted by `this.from`.
	FromRanges []Range `json:"fromRanges"`
}

Represents an incoming call, e.g. a caller of a method or constructor.

Since: 3.16.0

func (*CallHierarchyIncomingCall) UnmarshalJSONFrom

func (s *CallHierarchyIncomingCall) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyIncomingCallsOrNull

type CallHierarchyIncomingCallsOrNull struct {
	CallHierarchyIncomingCalls *[]*CallHierarchyIncomingCall
}

func (*CallHierarchyIncomingCallsOrNull) MarshalJSONTo

func (o *CallHierarchyIncomingCallsOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*CallHierarchyIncomingCallsOrNull) UnmarshalJSONFrom

func (o *CallHierarchyIncomingCallsOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyIncomingCallsParams

type CallHierarchyIncomingCallsParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	Item *CallHierarchyItem `json:"item"`
}

The parameter of a `callHierarchy/incomingCalls` request.

Since: 3.16.0

func (*CallHierarchyIncomingCallsParams) UnmarshalJSONFrom

func (s *CallHierarchyIncomingCallsParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyIncomingCallsResponse

type CallHierarchyIncomingCallsResponse = CallHierarchyIncomingCallsOrNull

Response type for `callHierarchy/incomingCalls`

type CallHierarchyItem

type CallHierarchyItem struct {
	// The name of this item.
	Name string `json:"name"`

	// The kind of this item.
	Kind SymbolKind `json:"kind"`

	// Tags for this item.
	Tags *[]SymbolTag `json:"tags,omitzero"`

	// More detail for this item, e.g. the signature of a function.
	Detail *string `json:"detail,omitzero"`

	// The resource identifier of this item.
	Uri DocumentUri `json:"uri"`

	// The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code.
	Range Range `json:"range"`

	// The range that should be selected and revealed when this symbol is being picked, e.g. the name of a function.
	// Must be contained by the `range`.
	SelectionRange Range `json:"selectionRange"`

	// A data entry field that is preserved between a call hierarchy prepare and
	// incoming calls or outgoing calls requests.
	Data *any `json:"data,omitzero"`
}

Represents programming constructs like functions or constructors in the context of call hierarchy.

Since: 3.16.0

func (*CallHierarchyItem) UnmarshalJSONFrom

func (s *CallHierarchyItem) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyItemsOrNull

type CallHierarchyItemsOrNull struct {
	CallHierarchyItems *[]*CallHierarchyItem
}

func (*CallHierarchyItemsOrNull) MarshalJSONTo

func (o *CallHierarchyItemsOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*CallHierarchyItemsOrNull) UnmarshalJSONFrom

func (o *CallHierarchyItemsOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyOptions

type CallHierarchyOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Call hierarchy options used during static registration.

Since: 3.16.0

type CallHierarchyOutgoingCall

type CallHierarchyOutgoingCall struct {
	// The item that is called.
	To *CallHierarchyItem `json:"to"`

	// The range at which this item is called. This is the range relative to the caller, e.g the item
	// passed to `provideCallHierarchyOutgoingCalls`
	// and not `this.to`.
	FromRanges []Range `json:"fromRanges"`
}

Represents an outgoing call, e.g. calling a getter from a method or a method from a constructor etc.

Since: 3.16.0

func (*CallHierarchyOutgoingCall) UnmarshalJSONFrom

func (s *CallHierarchyOutgoingCall) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyOutgoingCallsOrNull

type CallHierarchyOutgoingCallsOrNull struct {
	CallHierarchyOutgoingCalls *[]*CallHierarchyOutgoingCall
}

func (*CallHierarchyOutgoingCallsOrNull) MarshalJSONTo

func (o *CallHierarchyOutgoingCallsOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*CallHierarchyOutgoingCallsOrNull) UnmarshalJSONFrom

func (o *CallHierarchyOutgoingCallsOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyOutgoingCallsParams

type CallHierarchyOutgoingCallsParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	Item *CallHierarchyItem `json:"item"`
}

The parameter of a `callHierarchy/outgoingCalls` request.

Since: 3.16.0

func (*CallHierarchyOutgoingCallsParams) UnmarshalJSONFrom

func (s *CallHierarchyOutgoingCallsParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyOutgoingCallsResponse

type CallHierarchyOutgoingCallsResponse = CallHierarchyOutgoingCallsOrNull

Response type for `callHierarchy/outgoingCalls`

type CallHierarchyPrepareParams

type CallHierarchyPrepareParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`
}

The parameter of a `textDocument/prepareCallHierarchy` request.

Since: 3.16.0

func (*CallHierarchyPrepareParams) TextDocumentURI

func (s *CallHierarchyPrepareParams) TextDocumentURI() DocumentUri

func (*CallHierarchyPrepareParams) UnmarshalJSONFrom

func (s *CallHierarchyPrepareParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CallHierarchyPrepareResponse

type CallHierarchyPrepareResponse = CallHierarchyItemsOrNull

Response type for `textDocument/prepareCallHierarchy`

type CallHierarchyRegistrationOptions

type CallHierarchyRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Call hierarchy options used during static or dynamic registration.

Since: 3.16.0

func (*CallHierarchyRegistrationOptions) UnmarshalJSONFrom

func (s *CallHierarchyRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CancelParams

type CancelParams struct {
	// The request id to cancel.
	Id IntegerOrString `json:"id"`
}

func (*CancelParams) UnmarshalJSONFrom

func (s *CancelParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ChangeAnnotation

type ChangeAnnotation struct {
	// A human-readable string describing the actual change. The string
	// is rendered prominent in the user interface.
	Label string `json:"label"`

	// A flag which indicates that user confirmation is needed
	// before applying the change.
	NeedsConfirmation *bool `json:"needsConfirmation,omitzero"`

	// A human-readable string which is rendered less prominent in
	// the user interface.
	Description *string `json:"description,omitzero"`
}

Additional information that describes document changes.

Since: 3.16.0

func (*ChangeAnnotation) UnmarshalJSONFrom

func (s *ChangeAnnotation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ChangeAnnotationsSupportOptions

type ChangeAnnotationsSupportOptions struct {
	// Whether the client groups edits with equal labels into tree nodes,
	// for instance all edits labelled with "Changes in Strings" would
	// be a tree node.
	GroupsOnLabel *bool `json:"groupsOnLabel,omitzero"`
}

Since: 3.18.0

type ClientCapabilities

type ClientCapabilities struct {
	// Workspace specific client capabilities.
	Workspace *WorkspaceClientCapabilities `json:"workspace,omitzero"`

	// Text document specific client capabilities.
	TextDocument *TextDocumentClientCapabilities `json:"textDocument,omitzero"`

	// Capabilities specific to the notebook document support.
	//
	// Since: 3.17.0
	NotebookDocument *NotebookDocumentClientCapabilities `json:"notebookDocument,omitzero"`

	// Window specific client capabilities.
	Window *WindowClientCapabilities `json:"window,omitzero"`

	// General client capabilities.
	//
	// Since: 3.16.0
	General *GeneralClientCapabilities `json:"general,omitzero"`

	// Experimental client capabilities.
	Experimental *any `json:"experimental,omitzero"`
}

Defines the capabilities provided by the client.

type ClientCodeActionKindOptions

type ClientCodeActionKindOptions struct {
	// The code action kind values the client supports. When this
	// property exists the client also guarantees that it will
	// handle values outside its set gracefully and falls back
	// to a default value when unknown.
	ValueSet []CodeActionKind `json:"valueSet"`
}

Since: 3.18.0

func (*ClientCodeActionKindOptions) UnmarshalJSONFrom

func (s *ClientCodeActionKindOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ClientCodeActionLiteralOptions

type ClientCodeActionLiteralOptions struct {
	// The code action kind is support with the following value
	// set.
	CodeActionKind *ClientCodeActionKindOptions `json:"codeActionKind"`
}

Since: 3.18.0

func (*ClientCodeActionLiteralOptions) UnmarshalJSONFrom

func (s *ClientCodeActionLiteralOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ClientCodeActionResolveOptions

type ClientCodeActionResolveOptions struct {
	// The properties that a client can resolve lazily.
	Properties []string `json:"properties"`
}

Since: 3.18.0

func (*ClientCodeActionResolveOptions) UnmarshalJSONFrom

func (s *ClientCodeActionResolveOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ClientCodeLensResolveOptions

type ClientCodeLensResolveOptions struct {
	// The properties that a client can resolve lazily.
	Properties []string `json:"properties"`
}

Since: 3.18.0

func (*ClientCodeLensResolveOptions) UnmarshalJSONFrom

func (s *ClientCodeLensResolveOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ClientCompletionItemInsertTextModeOptions

type ClientCompletionItemInsertTextModeOptions struct {
	ValueSet []InsertTextMode `json:"valueSet"`
}

Since: 3.18.0

func (*ClientCompletionItemInsertTextModeOptions) UnmarshalJSONFrom

type ClientCompletionItemOptions

type ClientCompletionItemOptions struct {
	// Client supports snippets as insert text.
	//
	// A snippet can define tab stops and placeholders with `$1`, `$2`
	// and `${3:foo}`. `$0` defines the final tab stop, it defaults to
	// the end of the snippet. Placeholders with equal identifiers are linked,
	// that is typing in one will update others too.
	SnippetSupport *bool `json:"snippetSupport,omitzero"`

	// Client supports commit characters on a completion item.
	CommitCharactersSupport *bool `json:"commitCharactersSupport,omitzero"`

	// Client supports the following content formats for the documentation
	// property. The order describes the preferred format of the client.
	DocumentationFormat *[]MarkupKind `json:"documentationFormat,omitzero"`

	// Client supports the deprecated property on a completion item.
	DeprecatedSupport *bool `json:"deprecatedSupport,omitzero"`

	// Client supports the preselect property on a completion item.
	PreselectSupport *bool `json:"preselectSupport,omitzero"`

	// Client supports the tag property on a completion item. Clients supporting
	// tags have to handle unknown tags gracefully. Clients especially need to
	// preserve unknown tags when sending a completion item back to the server in
	// a resolve call.
	//
	// Since: 3.15.0
	TagSupport *CompletionItemTagOptions `json:"tagSupport,omitzero"`

	// Client support insert replace edit to control different behavior if a
	// completion item is inserted in the text or should replace text.
	//
	// Since: 3.16.0
	InsertReplaceSupport *bool `json:"insertReplaceSupport,omitzero"`

	// Indicates which properties a client can resolve lazily on a completion
	// item. Before version 3.16.0 only the predefined properties `documentation`
	// and `details` could be resolved lazily.
	//
	// Since: 3.16.0
	ResolveSupport *ClientCompletionItemResolveOptions `json:"resolveSupport,omitzero"`

	// The client supports the `insertTextMode` property on
	// a completion item to override the whitespace handling mode
	// as defined by the client (see `insertTextMode`).
	//
	// Since: 3.16.0
	InsertTextModeSupport *ClientCompletionItemInsertTextModeOptions `json:"insertTextModeSupport,omitzero"`

	// The client has support for completion item label
	// details (see also `CompletionItemLabelDetails`).
	//
	// Since: 3.17.0
	LabelDetailsSupport *bool `json:"labelDetailsSupport,omitzero"`
}

Since: 3.18.0

type ClientCompletionItemOptionsKind

type ClientCompletionItemOptionsKind struct {
	// The completion item kind values the client supports. When this
	// property exists the client also guarantees that it will
	// handle values outside its set gracefully and falls back
	// to a default value when unknown.
	//
	// If this property is not present the client only supports
	// the completion items kinds from `Text` to `Reference` as defined in
	// the initial version of the protocol.
	ValueSet *[]CompletionItemKind `json:"valueSet,omitzero"`
}

Since: 3.18.0

type ClientCompletionItemResolveOptions

type ClientCompletionItemResolveOptions struct {
	// The properties that a client can resolve lazily.
	Properties []string `json:"properties"`
}

Since: 3.18.0

func (*ClientCompletionItemResolveOptions) UnmarshalJSONFrom

func (s *ClientCompletionItemResolveOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ClientDiagnosticsTagOptions

type ClientDiagnosticsTagOptions struct {
	// The tags supported by the client.
	ValueSet []DiagnosticTag `json:"valueSet"`
}

Since: 3.18.0

func (*ClientDiagnosticsTagOptions) UnmarshalJSONFrom

func (s *ClientDiagnosticsTagOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ClientFoldingRangeKindOptions

type ClientFoldingRangeKindOptions struct {
	// The folding range kind values the client supports. When this
	// property exists the client also guarantees that it will
	// handle values outside its set gracefully and falls back
	// to a default value when unknown.
	ValueSet *[]FoldingRangeKind `json:"valueSet,omitzero"`
}

Since: 3.18.0

type ClientFoldingRangeOptions

type ClientFoldingRangeOptions struct {
	// If set, the client signals that it supports setting collapsedText on
	// folding ranges to display custom labels instead of the default text.
	//
	// Since: 3.17.0
	CollapsedText *bool `json:"collapsedText,omitzero"`
}

Since: 3.18.0

type ClientInfo

type ClientInfo struct {
	// The name of the client as defined by the client.
	Name string `json:"name"`

	// The client's version as defined by the client.
	Version *string `json:"version,omitzero"`
}

Information about the client

Since: 3.15.0

Since: 3.18.0 ClientInfo type name added.

func (*ClientInfo) UnmarshalJSONFrom

func (s *ClientInfo) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ClientInlayHintResolveOptions

type ClientInlayHintResolveOptions struct {
	// The properties that a client can resolve lazily.
	Properties []string `json:"properties"`
}

Since: 3.18.0

func (*ClientInlayHintResolveOptions) UnmarshalJSONFrom

func (s *ClientInlayHintResolveOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ClientSemanticTokensRequestFullDelta

type ClientSemanticTokensRequestFullDelta struct {
	// The client will send the `textDocument/semanticTokens/full/delta` request if
	// the server provides a corresponding handler.
	Delta *bool `json:"delta,omitzero"`
}

Since: 3.18.0

type ClientSemanticTokensRequestOptions

type ClientSemanticTokensRequestOptions struct {
	// The client will send the `textDocument/semanticTokens/range` request if
	// the server provides a corresponding handler.
	Range *BooleanOrEmptyObject `json:"range,omitzero"`

	// The client will send the `textDocument/semanticTokens/full` request if
	// the server provides a corresponding handler.
	Full *BooleanOrClientSemanticTokensRequestFullDelta `json:"full,omitzero"`
}

Since: 3.18.0

type ClientShowMessageActionItemOptions

type ClientShowMessageActionItemOptions struct {
	// Whether the client supports additional attributes which
	// are preserved and send back to the server in the
	// request's response.
	AdditionalPropertiesSupport *bool `json:"additionalPropertiesSupport,omitzero"`
}

Since: 3.18.0

type ClientSignatureInformationOptions

type ClientSignatureInformationOptions struct {
	// Client supports the following content formats for the documentation
	// property. The order describes the preferred format of the client.
	DocumentationFormat *[]MarkupKind `json:"documentationFormat,omitzero"`

	// Client capabilities specific to parameter information.
	ParameterInformation *ClientSignatureParameterInformationOptions `json:"parameterInformation,omitzero"`

	// The client supports the `activeParameter` property on `SignatureInformation`
	// literal.
	//
	// Since: 3.16.0
	ActiveParameterSupport *bool `json:"activeParameterSupport,omitzero"`

	// The client supports the `activeParameter` property on
	// `SignatureHelp`/`SignatureInformation` being set to `null` to
	// indicate that no parameter should be active.
	//
	// Since: 3.18.0
	//
	// Proposed.
	NoActiveParameterSupport *bool `json:"noActiveParameterSupport,omitzero"`
}

Since: 3.18.0

type ClientSignatureParameterInformationOptions

type ClientSignatureParameterInformationOptions struct {
	// The client supports processing label offsets instead of a
	// simple label string.
	//
	// Since: 3.14.0
	LabelOffsetSupport *bool `json:"labelOffsetSupport,omitzero"`
}

Since: 3.18.0

type ClientSymbolKindOptions

type ClientSymbolKindOptions struct {
	// The symbol kind values the client supports. When this
	// property exists the client also guarantees that it will
	// handle values outside its set gracefully and falls back
	// to a default value when unknown.
	//
	// If this property is not present the client only supports
	// the symbol kinds from `File` to `Array` as defined in
	// the initial version of the protocol.
	ValueSet *[]SymbolKind `json:"valueSet,omitzero"`
}

Since: 3.18.0

type ClientSymbolResolveOptions

type ClientSymbolResolveOptions struct {
	// The properties that a client can resolve lazily. Usually
	// `location.range`
	Properties []string `json:"properties"`
}

Since: 3.18.0

func (*ClientSymbolResolveOptions) UnmarshalJSONFrom

func (s *ClientSymbolResolveOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ClientSymbolTagOptions

type ClientSymbolTagOptions struct {
	// The tags supported by the client.
	ValueSet []SymbolTag `json:"valueSet"`
}

Since: 3.18.0

func (*ClientSymbolTagOptions) UnmarshalJSONFrom

func (s *ClientSymbolTagOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeAction

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,omitzero"`

	// The diagnostics that this code action resolves.
	Diagnostics *[]*Diagnostic `json:"diagnostics,omitzero"`

	// 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.
	//
	// Since: 3.15.0
	IsPreferred *bool `json:"isPreferred,omitzero"`

	// 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](https://code.visualstudio.com/docs/editor/editingevolved#_code-action)
	//     code action menus.
	//
	//   - Disabled actions are shown as faded out in the code action menu when the user requests a more specific type
	//     of code action, such as refactorings.
	//
	//   - If the user has a [keybinding](https://code.visualstudio.com/docs/editor/refactoring#_keybindings-for-code-actions)
	//     that auto applies a code action and only disabled code actions are returned, the client should show the user an
	//     error message with `reason` in the editor.
	//
	// Since: 3.16.0
	Disabled *CodeActionDisabled `json:"disabled,omitzero"`

	// The workspace edit this code action performs.
	Edit *WorkspaceEdit `json:"edit,omitzero"`

	// 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,omitzero"`

	// 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 *any `json:"data,omitzero"`

	// Tags for this code action.
	//
	// Since: 3.18.0 - proposed
	Tags *[]CodeActionTag `json:"tags,omitzero"`
}

A code action represents a change that can be performed in code, e.g. 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.

func (*CodeAction) UnmarshalJSONFrom

func (s *CodeAction) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeActionClientCapabilities

type CodeActionClientCapabilities struct {
	// Whether code action supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client support code action literals of type `CodeAction` as a valid
	// response of the `textDocument/codeAction` request. If the property is not
	// set the request can only return `Command` literals.
	//
	// Since: 3.8.0
	CodeActionLiteralSupport *ClientCodeActionLiteralOptions `json:"codeActionLiteralSupport,omitzero"`

	// Whether code action supports the `isPreferred` property.
	//
	// Since: 3.15.0
	IsPreferredSupport *bool `json:"isPreferredSupport,omitzero"`

	// Whether code action supports the `disabled` property.
	//
	// Since: 3.16.0
	DisabledSupport *bool `json:"disabledSupport,omitzero"`

	// Whether code action supports the `data` property which is
	// preserved between a `textDocument/codeAction` and a
	// `codeAction/resolve` request.
	//
	// Since: 3.16.0
	DataSupport *bool `json:"dataSupport,omitzero"`

	// Whether the client supports resolving additional code action
	// properties via a separate `codeAction/resolve` request.
	//
	// Since: 3.16.0
	ResolveSupport *ClientCodeActionResolveOptions `json:"resolveSupport,omitzero"`

	// Whether the client honors the change annotations in
	// text edits and resource operations returned via the
	// `CodeAction#edit` property by for example presenting
	// the workspace edit in the user interface and asking
	// for confirmation.
	//
	// Since: 3.16.0
	HonorsChangeAnnotations *bool `json:"honorsChangeAnnotations,omitzero"`

	// Whether the client supports documentation for a class of
	// code actions.
	//
	// Since: 3.18.0
	//
	// Proposed.
	DocumentationSupport *bool `json:"documentationSupport,omitzero"`

	// Client supports the tag property on a code action. Clients
	// supporting tags have to handle unknown tags gracefully.
	//
	// Since: 3.18.0 - proposed
	TagSupport *CodeActionTagOptions `json:"tagSupport,omitzero"`
}

The Client Capabilities of a CodeActionRequest.

type CodeActionContext

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,omitzero"`

	// The reason why code actions were requested.
	//
	// Since: 3.17.0
	TriggerKind *CodeActionTriggerKind `json:"triggerKind,omitzero"`
}

Contains additional diagnostic information about the context in which a action is run.

func (*CodeActionContext) UnmarshalJSONFrom

func (s *CodeActionContext) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeActionDisabled

type CodeActionDisabled struct {
	// Human readable description of why the code action is currently disabled.
	//
	// This is displayed in the code actions UI.
	Reason string `json:"reason"`
}

Captures why the code action is currently disabled.

Since: 3.18.0

func (*CodeActionDisabled) UnmarshalJSONFrom

func (s *CodeActionDisabled) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeActionKind

type CodeActionKind string

A set of predefined code action kinds

const (
	// Empty kind.
	CodeActionKindEmpty CodeActionKind = ""
	// Base kind for quickfix actions: 'quickfix'
	CodeActionKindQuickFix CodeActionKind = "quickfix"
	// Base kind for refactoring actions: 'refactor'
	CodeActionKindRefactor CodeActionKind = "refactor"
	// Base kind for refactoring extraction actions: 'refactor.extract'
	//
	// Example extract actions:
	//
	// - Extract method
	// - Extract function
	// - Extract variable
	// - Extract interface from class
	// - ...
	CodeActionKindRefactorExtract CodeActionKind = "refactor.extract"
	// Base kind for refactoring inline actions: 'refactor.inline'
	//
	// Example inline actions:
	//
	// - Inline function
	// - Inline variable
	// - Inline constant
	// - ...
	CodeActionKindRefactorInline CodeActionKind = "refactor.inline"
	// Base kind for refactoring move actions: `refactor.move`
	//
	// Example move actions:
	//
	// - Move a function to a new file
	// - Move a property between classes
	// - Move method to base class
	// - ...
	//
	// Since: 3.18.0
	//
	// Proposed.
	CodeActionKindRefactorMove CodeActionKind = "refactor.move"
	// 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
	// - ...
	CodeActionKindRefactorRewrite CodeActionKind = "refactor.rewrite"
	// Base kind for source actions: `source`
	//
	// Source code actions apply to the entire file.
	CodeActionKindSource CodeActionKind = "source"
	// Base kind for an organize imports source action: `source.organizeImports`
	CodeActionKindSourceOrganizeImports CodeActionKind = "source.organizeImports"
	// Base kind for auto-fix source actions: `source.fixAll`.
	//
	// Fix all actions automatically fix errors that have a clear fix that do not require user input.
	// They should not suppress errors or perform unsafe fixes such as generating new types or classes.
	//
	// Since: 3.15.0
	CodeActionKindSourceFixAll CodeActionKind = "source.fixAll"
	// Base kind for all code actions applying to the entire notebook's scope. CodeActionKinds using
	// this should always begin with `notebook.`
	//
	// Since: 3.18.0
	CodeActionKindNotebook CodeActionKind = "notebook"
)

type CodeActionKindDocumentation

type CodeActionKindDocumentation struct {
	// The kind of the code action being documented.
	//
	// If the kind is generic, such as `CodeActionKind.Refactor`, the documentation will be shown whenever any
	// refactorings are returned. If the kind if more specific, such as `CodeActionKind.RefactorExtract`, the
	// documentation will only be shown when extract refactoring code actions are returned.
	Kind CodeActionKind `json:"kind"`

	// Command that is ued to display the documentation to the user.
	//
	// The title of this documentation code action is taken from Command.title
	Command *Command `json:"command"`
}

Documentation for a class of code actions.

Since: 3.18.0

Proposed.

func (*CodeActionKindDocumentation) UnmarshalJSONFrom

func (s *CodeActionKindDocumentation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeActionOptions

type CodeActionOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// 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,omitzero"`

	// Static documentation for a class of code actions.
	//
	// Documentation from the provider should be shown in the code actions menu if either:
	//
	// - Code actions of `kind` are requested by the editor. In this case, the editor will show the documentation that
	//   most closely matches the requested code action kind. For example, if a provider has documentation for
	//   both `Refactor` and `RefactorExtract`, when the user requests code actions for `RefactorExtract`,
	//   the editor will use the documentation for `RefactorExtract` instead of the documentation for `Refactor`.
	//
	// - Any code actions of `kind` are returned by the provider.
	//
	// At most one documentation entry should be shown per provider.
	//
	// Since: 3.18.0
	//
	// Proposed.
	Documentation *[]*CodeActionKindDocumentation `json:"documentation,omitzero"`

	// The server provides support to resolve additional
	// information for a code action.
	//
	// Since: 3.16.0
	ResolveProvider *bool `json:"resolveProvider,omitzero"`
}

Provider options for a CodeActionRequest.

type CodeActionParams

type CodeActionParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// 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"`
}

The parameters of a CodeActionRequest.

func (*CodeActionParams) TextDocumentURI

func (s *CodeActionParams) TextDocumentURI() DocumentUri

func (*CodeActionParams) UnmarshalJSONFrom

func (s *CodeActionParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeActionRegistrationOptions

type CodeActionRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// 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,omitzero"`

	// Static documentation for a class of code actions.
	//
	// Documentation from the provider should be shown in the code actions menu if either:
	//
	// - Code actions of `kind` are requested by the editor. In this case, the editor will show the documentation that
	//   most closely matches the requested code action kind. For example, if a provider has documentation for
	//   both `Refactor` and `RefactorExtract`, when the user requests code actions for `RefactorExtract`,
	//   the editor will use the documentation for `RefactorExtract` instead of the documentation for `Refactor`.
	//
	// - Any code actions of `kind` are returned by the provider.
	//
	// At most one documentation entry should be shown per provider.
	//
	// Since: 3.18.0
	//
	// Proposed.
	Documentation *[]*CodeActionKindDocumentation `json:"documentation,omitzero"`

	// The server provides support to resolve additional
	// information for a code action.
	//
	// Since: 3.16.0
	ResolveProvider *bool `json:"resolveProvider,omitzero"`
}

Registration options for a CodeActionRequest.

func (*CodeActionRegistrationOptions) UnmarshalJSONFrom

func (s *CodeActionRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeActionResolveResponse

type CodeActionResolveResponse = *CodeAction

Response type for `codeAction/resolve`

type CodeActionResponse

type CodeActionResponse = CommandOrCodeActionArrayOrNull

Response type for `textDocument/codeAction`

type CodeActionTag

type CodeActionTag uint32

Code action tags are extra annotations that tweak the behavior of a code action.

Since: 3.18.0 - proposed

const (
	// Marks the code action as LLM-generated.
	CodeActionTagLLMGenerated CodeActionTag = 1
)

type CodeActionTagOptions

type CodeActionTagOptions struct {
	// The tags supported by the client.
	ValueSet []CodeActionTag `json:"valueSet"`
}

Since: 3.18.0 - proposed

func (*CodeActionTagOptions) UnmarshalJSONFrom

func (s *CodeActionTagOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeActionTriggerKind

type CodeActionTriggerKind uint32

The reason why code actions were requested.

Since: 3.17.0

const (
	// Code actions were explicitly requested by the user or by an extension.
	CodeActionTriggerKindInvoked CodeActionTriggerKind = 1
	// Code actions were requested automatically.
	//
	// This typically happens when current selection in a file changes, but can
	// also be triggered when file content changes.
	CodeActionTriggerKindAutomatic CodeActionTriggerKind = 2
)

type CodeDescription

type CodeDescription struct {
	// An URI to open with more information about the diagnostic error.
	Href URI `json:"href"`
}

Structure to capture a description for an error code.

Since: 3.16.0

func (*CodeDescription) UnmarshalJSONFrom

func (s *CodeDescription) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeLens

type CodeLens struct {
	// The range in which this code lens is valid. Should only span a single line.
	Range Range `json:"range"`

	// The command this code lens represents.
	Command *Command `json:"command,omitzero"`

	// A data entry field that is preserved on a code lens item between
	// a CodeLensRequest and a CodeLensResolveRequest
	Data *any `json:"data,omitzero"`
}

A code lens represents a command that should be shown along with source text, like the number of references, a way to run tests, etc.

A code lens is _unresolved_ when no command is associated to it. For performance reasons the creation of a code lens and resolving should be done in two stages.

func (*CodeLens) UnmarshalJSONFrom

func (s *CodeLens) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeLensClientCapabilities

type CodeLensClientCapabilities struct {
	// Whether code lens supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Whether the client supports resolving additional code lens
	// properties via a separate `codeLens/resolve` request.
	//
	// Since: 3.18.0
	ResolveSupport *ClientCodeLensResolveOptions `json:"resolveSupport,omitzero"`
}

The client capabilities of a CodeLensRequest.

type CodeLensOptions

type CodeLensOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Code lens has a resolve provider as well.
	ResolveProvider *bool `json:"resolveProvider,omitzero"`
}

Code Lens provider options of a CodeLensRequest.

type CodeLensParams

type CodeLensParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The document to request code lens for.
	TextDocument TextDocumentIdentifier `json:"textDocument"`
}

The parameters of a CodeLensRequest.

func (*CodeLensParams) TextDocumentURI

func (s *CodeLensParams) TextDocumentURI() DocumentUri

func (*CodeLensParams) UnmarshalJSONFrom

func (s *CodeLensParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeLensRefreshResponse

type CodeLensRefreshResponse = Null

Response type for `workspace/codeLens/refresh`

type CodeLensRegistrationOptions

type CodeLensRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Code lens has a resolve provider as well.
	ResolveProvider *bool `json:"resolveProvider,omitzero"`
}

Registration options for a CodeLensRequest.

func (*CodeLensRegistrationOptions) UnmarshalJSONFrom

func (s *CodeLensRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CodeLensResolveResponse

type CodeLensResolveResponse = *CodeLens

Response type for `codeLens/resolve`

type CodeLensResponse

type CodeLensResponse = CodeLenssOrNull

Response type for `textDocument/codeLens`

type CodeLensWorkspaceClientCapabilities

type CodeLensWorkspaceClientCapabilities struct {
	// Whether the client implementation supports a refresh request sent from the
	// server to the client.
	//
	// Note that this event is global and will force the client to refresh all
	// code lenses currently shown. It should be used with absolute care and is
	// useful for situation where a server for example detect a project wide
	// change that requires such a calculation.
	RefreshSupport *bool `json:"refreshSupport,omitzero"`
}

Since: 3.16.0

type CodeLenssOrNull

type CodeLenssOrNull struct {
	CodeLenss *[]*CodeLens
}

func (*CodeLenssOrNull) MarshalJSONTo

func (o *CodeLenssOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*CodeLenssOrNull) UnmarshalJSONFrom

func (o *CodeLenssOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type Color

type Color struct {
	// The red component of this color in the range [0-1].
	Red float64 `json:"red"`

	// The green component of this color in the range [0-1].
	Green float64 `json:"green"`

	// The blue component of this color in the range [0-1].
	Blue float64 `json:"blue"`

	// The alpha component of this color in the range [0-1].
	Alpha float64 `json:"alpha"`
}

Represents a color in RGBA space.

func (*Color) UnmarshalJSONFrom

func (s *Color) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ColorInformation

type ColorInformation struct {
	// The range in the document where this color appears.
	Range Range `json:"range"`

	// The actual color value for this color range.
	Color Color `json:"color"`
}

Represents a color range from a document.

func (*ColorInformation) UnmarshalJSONFrom

func (s *ColorInformation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ColorPresentation

type ColorPresentation struct {
	// The label of this color presentation. It will be shown on the color
	// picker header. By default this is also the text that is inserted when selecting
	// this color presentation.
	Label string `json:"label"`

	// An edit which is applied to a document when selecting
	// this presentation for the color.  When `falsy` the label
	// is used.
	TextEdit *TextEdit `json:"textEdit,omitzero"`

	// An optional array of additional edits that are applied when
	// selecting this color presentation. Edits must not overlap with the main edit nor with themselves.
	AdditionalTextEdits *[]*TextEdit `json:"additionalTextEdits,omitzero"`
}

func (*ColorPresentation) UnmarshalJSONFrom

func (s *ColorPresentation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ColorPresentationParams

type ColorPresentationParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The color to request presentations for.
	Color Color `json:"color"`

	// The range where the color would be inserted. Serves as a context.
	Range Range `json:"range"`
}

Parameters for a ColorPresentationRequest.

func (*ColorPresentationParams) TextDocumentURI

func (s *ColorPresentationParams) TextDocumentURI() DocumentUri

func (*ColorPresentationParams) UnmarshalJSONFrom

func (s *ColorPresentationParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ColorPresentationResponse

type ColorPresentationResponse = []*ColorPresentation

Response type for `textDocument/colorPresentation`

type Command

type Command struct {
	// Title of the command, like `save`.
	Title string `json:"title"`

	// An optional tooltip.
	//
	// Since: 3.18.0
	//
	// Proposed.
	Tooltip *string `json:"tooltip,omitzero"`

	// The identifier of the actual command handler.
	Command string `json:"command"`

	// Arguments that the command handler should be
	// invoked with.
	Arguments *[]any `json:"arguments,omitzero"`
}

Represents a reference to a command. Provides a title which will be used to represent a command in the UI and, optionally, an array of arguments which will be passed to the command handler function when invoked.

func (*Command) UnmarshalJSONFrom

func (s *Command) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CommandOrCodeAction

type CommandOrCodeAction struct {
	Command    *Command
	CodeAction *CodeAction
}

func (*CommandOrCodeAction) MarshalJSONTo

func (o *CommandOrCodeAction) MarshalJSONTo(enc *jsontext.Encoder) error

func (*CommandOrCodeAction) UnmarshalJSONFrom

func (o *CommandOrCodeAction) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CommandOrCodeActionArrayOrNull

type CommandOrCodeActionArrayOrNull struct {
	CommandOrCodeActionArray *[]CommandOrCodeAction
}

func (*CommandOrCodeActionArrayOrNull) MarshalJSONTo

func (o *CommandOrCodeActionArrayOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*CommandOrCodeActionArrayOrNull) UnmarshalJSONFrom

func (o *CommandOrCodeActionArrayOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CompletionClientCapabilities

type CompletionClientCapabilities struct {
	// Whether completion supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client supports the following `CompletionItem` specific
	// capabilities.
	CompletionItem *ClientCompletionItemOptions `json:"completionItem,omitzero"`

	CompletionItemKind *ClientCompletionItemOptionsKind `json:"completionItemKind,omitzero"`

	// Defines how the client handles whitespace and indentation
	// when accepting a completion item that uses multi line
	// text in either `insertText` or `textEdit`.
	//
	// Since: 3.17.0
	InsertTextMode *InsertTextMode `json:"insertTextMode,omitzero"`

	// The client supports to send additional context information for a
	// `textDocument/completion` request.
	ContextSupport *bool `json:"contextSupport,omitzero"`

	// The client supports the following `CompletionList` specific
	// capabilities.
	//
	// Since: 3.17.0
	CompletionList *CompletionListCapabilities `json:"completionList,omitzero"`
}

Completion client capabilities

type CompletionContext

type CompletionContext struct {
	// How the completion was triggered.
	TriggerKind CompletionTriggerKind `json:"triggerKind"`

	// The trigger character (a single character) that has trigger code complete.
	// Is undefined if `triggerKind !== CompletionTriggerKind.TriggerCharacter`
	TriggerCharacter *string `json:"triggerCharacter,omitzero"`
}

Contains additional information about the context in which a completion request is triggered.

func (*CompletionContext) UnmarshalJSONFrom

func (s *CompletionContext) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CompletionItem

type CompletionItem struct {
	// The label of this completion item.
	//
	// The label property is also by default the text that
	// is inserted when selecting this completion.
	//
	// If label details are provided the label itself should
	// be an unqualified name of the completion item.
	Label string `json:"label"`

	// Additional details for the label
	//
	// Since: 3.17.0
	LabelDetails *CompletionItemLabelDetails `json:"labelDetails,omitzero"`

	// The kind of this completion item. Based of the kind
	// an icon is chosen by the editor.
	Kind *CompletionItemKind `json:"kind,omitzero"`

	// Tags for this completion item.
	//
	// Since: 3.15.0
	Tags *[]CompletionItemTag `json:"tags,omitzero"`

	// A human-readable string with additional information
	// about this item, like type or symbol information.
	Detail *string `json:"detail,omitzero"`

	// A human-readable string that represents a doc-comment.
	Documentation *StringOrMarkupContent `json:"documentation,omitzero"`

	// Indicates if this item is deprecated.
	//
	// Deprecated: Use `tags` instead.
	Deprecated *bool `json:"deprecated,omitzero"`

	// Select this item when showing.
	//
	// *Note* that only one completion item can be selected and that the
	// tool / client decides which item that is. The rule is that the *first*
	// item of those that match best is selected.
	Preselect *bool `json:"preselect,omitzero"`

	// A string that should be used when comparing this item
	// with other items. When `falsy` the label
	// is used.
	SortText *string `json:"sortText,omitzero"`

	// A string that should be used when filtering a set of
	// completion items. When `falsy` the label
	// is used.
	FilterText *string `json:"filterText,omitzero"`

	// A string that should be inserted into a document when selecting
	// this completion. When `falsy` the label
	// is used.
	//
	// The `insertText` is subject to interpretation by the client side.
	// Some tools might not take the string literally. For example
	// VS Code when code complete is requested in this example
	// `con<cursor position>` and a completion item with an `insertText` of
	// `console` is provided it will only insert `sole`. Therefore it is
	// recommended to use `textEdit` instead since it avoids additional client
	// side interpretation.
	InsertText *string `json:"insertText,omitzero"`

	// The format of the insert text. The format applies to both the
	// `insertText` property and the `newText` property of a provided
	// `textEdit`. If omitted defaults to `InsertTextFormat.PlainText`.
	//
	// Please note that the insertTextFormat doesn't apply to
	// `additionalTextEdits`.
	InsertTextFormat *InsertTextFormat `json:"insertTextFormat,omitzero"`

	// How whitespace and indentation is handled during completion
	// item insertion. If not provided the clients default value depends on
	// the `textDocument.completion.insertTextMode` client capability.
	//
	// Since: 3.16.0
	InsertTextMode *InsertTextMode `json:"insertTextMode,omitzero"`

	// An edit which is applied to a document when selecting
	// this completion. When an edit is provided the value of
	// insertText is ignored.
	//
	// Most editors support two different operations when accepting a completion
	// item. One is to insert a completion text and the other is to replace an
	// existing text with a completion text. Since this can usually not be
	// predetermined by a server it can report both ranges. Clients need to
	// signal support for `InsertReplaceEdits` via the
	// `textDocument.completion.insertReplaceSupport` client capability
	// property.
	//
	// *Note 1:* The text edit's range as well as both ranges from an insert
	// replace edit must be a [single line] and they must contain the position
	// at which completion has been requested.
	// *Note 2:* If an `InsertReplaceEdit` is returned the edit's insert range
	// must be a prefix of the edit's replace range, that means it must be
	// contained and starting at the same position.
	//
	// Since: 3.16.0 additional type `InsertReplaceEdit`
	TextEdit *TextEditOrInsertReplaceEdit `json:"textEdit,omitzero"`

	// The edit text used if the completion item is part of a CompletionList and
	// CompletionList defines an item default for the text edit range.
	//
	// Clients will only honor this property if they opt into completion list
	// item defaults using the capability `completionList.itemDefaults`.
	//
	// If not provided and a list's default range is provided the label
	// property is used as a text.
	//
	// Since: 3.17.0
	TextEditText *string `json:"textEditText,omitzero"`

	// An optional array of additional edits that are applied when
	// selecting this completion. Edits must not overlap (including the same insert position)
	// with the main edit nor with themselves.
	//
	// Additional text edits should be used to change text unrelated to the current cursor position
	// (for example adding an import statement at the top of the file if the completion item will
	// insert an unqualified type).
	AdditionalTextEdits *[]*TextEdit `json:"additionalTextEdits,omitzero"`

	// An optional set of characters that when pressed while this completion is active will accept it first and
	// then type that character. *Note* that all commit characters should have `length=1` and that superfluous
	// characters will be ignored.
	CommitCharacters *[]string `json:"commitCharacters,omitzero"`

	// An optional command that is executed *after* inserting this completion. *Note* that
	// additional modifications to the current document should be described with the
	// additionalTextEdits-property.
	Command *Command `json:"command,omitzero"`

	// A data entry field that is preserved on a completion item between a
	// CompletionRequest and a CompletionResolveRequest.
	Data *any `json:"data,omitzero"`
}

A completion item represents a text snippet that is proposed to complete text that is being typed.

func (*CompletionItem) UnmarshalJSONFrom

func (s *CompletionItem) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CompletionItemApplyKinds

type CompletionItemApplyKinds struct {
	// Specifies whether commitCharacters on a completion will replace or be
	// merged with those in `completionList.itemDefaults.commitCharacters`.
	//
	// If ApplyKind.Replace, the commit characters from the completion item will
	// always be used unless not provided, in which case those from
	// `completionList.itemDefaults.commitCharacters` will be used. An
	// empty list can be used if a completion item does not have any commit
	// characters and also should not use those from
	// `completionList.itemDefaults.commitCharacters`.
	//
	// If ApplyKind.Merge the commitCharacters for the completion will be the
	// union of all values in both `completionList.itemDefaults.commitCharacters`
	// and the completion's own `commitCharacters`.
	//
	// Since: 3.18.0
	CommitCharacters *ApplyKind `json:"commitCharacters,omitzero"`

	// Specifies whether the `data` field on a completion will replace or
	// be merged with data from `completionList.itemDefaults.data`.
	//
	// If ApplyKind.Replace, the data from the completion item will be used if
	// provided (and not `null`), otherwise
	// `completionList.itemDefaults.data` will be used. An empty object can
	// be used if a completion item does not have any data but also should
	// not use the value from `completionList.itemDefaults.data`.
	//
	// If ApplyKind.Merge, a shallow merge will be performed between
	// `completionList.itemDefaults.data` and the completion's own data
	// using the following rules:
	//
	// - If a completion's `data` field is not provided (or `null`), the
	//   entire `data` field from `completionList.itemDefaults.data` will be
	//   used as-is.
	// - If a completion's `data` field is provided, each field will
	//   overwrite the field of the same name in
	//   `completionList.itemDefaults.data` but no merging of nested fields
	//   within that value will occur.
	//
	// Since: 3.18.0
	Data *ApplyKind `json:"data,omitzero"`
}

Specifies how fields from a completion item should be combined with those from `completionList.itemDefaults`.

If unspecified, all fields will be treated as ApplyKind.Replace.

If a field's value is ApplyKind.Replace, the value from a completion item (if provided and not `null`) will always be used instead of the value from `completionItem.itemDefaults`.

If a field's value is ApplyKind.Merge, the values will be merged using the rules defined against each field below.

Servers are only allowed to return `applyKind` if the client signals support for this via the `completionList.applyKindSupport` capability.

Since: 3.18.0

type CompletionItemDefaults

type CompletionItemDefaults struct {
	// A default commit character set.
	//
	// Since: 3.17.0
	CommitCharacters *[]string `json:"commitCharacters,omitzero"`

	// A default edit range.
	//
	// Since: 3.17.0
	EditRange *RangeOrEditRangeWithInsertReplace `json:"editRange,omitzero"`

	// A default insert text format.
	//
	// Since: 3.17.0
	InsertTextFormat *InsertTextFormat `json:"insertTextFormat,omitzero"`

	// A default insert text mode.
	//
	// Since: 3.17.0
	InsertTextMode *InsertTextMode `json:"insertTextMode,omitzero"`

	// A default data value.
	//
	// Since: 3.17.0
	Data *any `json:"data,omitzero"`
}

In many cases the items of an actual completion result share the same value for properties like `commitCharacters` or the range of a text edit. A completion list can therefore define item defaults which will be used if a completion item itself doesn't specify the value.

If a completion list specifies a default value and a completion item also specifies a corresponding value, the rules for combining these are defined by `applyKinds` (if the client supports it), defaulting to ApplyKind.Replace.

Servers are only allowed to return default values if the client signals support for this via the `completionList.itemDefaults` capability.

Since: 3.17.0

type CompletionItemKind

type CompletionItemKind uint32

The kind of a completion entry.

const (
	CompletionItemKindText          CompletionItemKind = 1
	CompletionItemKindMethod        CompletionItemKind = 2
	CompletionItemKindFunction      CompletionItemKind = 3
	CompletionItemKindConstructor   CompletionItemKind = 4
	CompletionItemKindField         CompletionItemKind = 5
	CompletionItemKindVariable      CompletionItemKind = 6
	CompletionItemKindClass         CompletionItemKind = 7
	CompletionItemKindInterface     CompletionItemKind = 8
	CompletionItemKindModule        CompletionItemKind = 9
	CompletionItemKindProperty      CompletionItemKind = 10
	CompletionItemKindUnit          CompletionItemKind = 11
	CompletionItemKindValue         CompletionItemKind = 12
	CompletionItemKindEnum          CompletionItemKind = 13
	CompletionItemKindKeyword       CompletionItemKind = 14
	CompletionItemKindSnippet       CompletionItemKind = 15
	CompletionItemKindColor         CompletionItemKind = 16
	CompletionItemKindFile          CompletionItemKind = 17
	CompletionItemKindReference     CompletionItemKind = 18
	CompletionItemKindFolder        CompletionItemKind = 19
	CompletionItemKindEnumMember    CompletionItemKind = 20
	CompletionItemKindConstant      CompletionItemKind = 21
	CompletionItemKindStruct        CompletionItemKind = 22
	CompletionItemKindEvent         CompletionItemKind = 23
	CompletionItemKindOperator      CompletionItemKind = 24
	CompletionItemKindTypeParameter CompletionItemKind = 25
)

type CompletionItemLabelDetails

type CompletionItemLabelDetails struct {
	// An optional string which is rendered less prominently directly after label,
	// without any spacing. Should be used for function signatures and type annotations.
	Detail *string `json:"detail,omitzero"`

	// An optional string which is rendered less prominently after CompletionItem.detail. Should be used
	// for fully qualified names and file paths.
	Description *string `json:"description,omitzero"`
}

Additional details for a completion item label.

Since: 3.17.0

type CompletionItemTag

type CompletionItemTag uint32

Completion item tags are extra annotations that tweak the rendering of a completion item.

Since: 3.15.0

const (
	// Render a completion as obsolete, usually using a strike-out.
	CompletionItemTagDeprecated CompletionItemTag = 1
)

type CompletionItemTagOptions

type CompletionItemTagOptions struct {
	// The tags supported by the client.
	ValueSet []CompletionItemTag `json:"valueSet"`
}

Since: 3.18.0

func (*CompletionItemTagOptions) UnmarshalJSONFrom

func (s *CompletionItemTagOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CompletionItemsOrListOrNull

type CompletionItemsOrListOrNull struct {
	Items *[]*CompletionItem
	List  *CompletionList
}

func (*CompletionItemsOrListOrNull) MarshalJSONTo

func (o *CompletionItemsOrListOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*CompletionItemsOrListOrNull) UnmarshalJSONFrom

func (o *CompletionItemsOrListOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CompletionList

type CompletionList struct {
	// This list it not complete. Further typing results in recomputing this list.
	//
	// Recomputed lists have all their items replaced (not appended) in the
	// incomplete completion sessions.
	IsIncomplete bool `json:"isIncomplete"`

	// In many cases the items of an actual completion result share the same
	// value for properties like `commitCharacters` or the range of a text
	// edit. A completion list can therefore define item defaults which will
	// be used if a completion item itself doesn't specify the value.
	//
	// If a completion list specifies a default value and a completion item
	// also specifies a corresponding value, the rules for combining these are
	// defined by `applyKinds` (if the client supports it), defaulting to
	// ApplyKind.Replace.
	//
	// Servers are only allowed to return default values if the client
	// signals support for this via the `completionList.itemDefaults`
	// capability.
	//
	// Since: 3.17.0
	ItemDefaults *CompletionItemDefaults `json:"itemDefaults,omitzero"`

	// Specifies how fields from a completion item should be combined with those
	// from `completionList.itemDefaults`.
	//
	// If unspecified, all fields will be treated as ApplyKind.Replace.
	//
	// If a field's value is ApplyKind.Replace, the value from a completion item
	// (if provided and not `null`) will always be used instead of the value
	// from `completionItem.itemDefaults`.
	//
	// If a field's value is ApplyKind.Merge, the values will be merged using
	// the rules defined against each field below.
	//
	// Servers are only allowed to return `applyKind` if the client
	// signals support for this via the `completionList.applyKindSupport`
	// capability.
	//
	// Since: 3.18.0
	ApplyKind *CompletionItemApplyKinds `json:"applyKind,omitzero"`

	// The completion items.
	Items []*CompletionItem `json:"items"`
}

Represents a collection of items to be presented in the editor.

func (*CompletionList) UnmarshalJSONFrom

func (s *CompletionList) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CompletionListCapabilities

type CompletionListCapabilities struct {
	// The client supports the following itemDefaults on
	// a completion list.
	//
	// The value lists the supported property names of the
	// `CompletionList.itemDefaults` object. If omitted
	// no properties are supported.
	//
	// Since: 3.17.0
	ItemDefaults *[]string `json:"itemDefaults,omitzero"`

	// Specifies whether the client supports `CompletionList.applyKind` to
	// indicate how supported values from `completionList.itemDefaults`
	// and `completion` will be combined.
	//
	// If a client supports `applyKind` it must support it for all fields
	// that it supports that are listed in `CompletionList.applyKind`. This
	// means when clients add support for new/future fields in completion
	// items the MUST also support merge for them if those fields are
	// defined in `CompletionList.applyKind`.
	//
	// Since: 3.18.0
	ApplyKindSupport *bool `json:"applyKindSupport,omitzero"`
}

The client supports the following `CompletionList` specific capabilities.

Since: 3.17.0

type CompletionOptions

type CompletionOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Most tools trigger completion request automatically without explicitly requesting
	// it using a keyboard shortcut (e.g. Ctrl+Space). Typically they do so when the user
	// starts to type an identifier. For example if the user types `c` in a JavaScript file
	// code complete will automatically pop up present `console` besides others as a
	// completion item. Characters that make up identifiers don't need to be listed here.
	//
	// If code complete should automatically be trigger on characters not being valid inside
	// an identifier (for example `.` in JavaScript) list them in `triggerCharacters`.
	TriggerCharacters *[]string `json:"triggerCharacters,omitzero"`

	// The list of all possible characters that commit a completion. This field can be used
	// if clients don't support individual commit characters per completion item. See
	// `ClientCapabilities.textDocument.completion.completionItem.commitCharactersSupport`
	//
	// If a server provides both `allCommitCharacters` and commit characters on an individual
	// completion item the ones on the completion item win.
	//
	// Since: 3.2.0
	AllCommitCharacters *[]string `json:"allCommitCharacters,omitzero"`

	// The server provides support to resolve additional
	// information for a completion item.
	ResolveProvider *bool `json:"resolveProvider,omitzero"`

	// The server supports the following `CompletionItem` specific
	// capabilities.
	//
	// Since: 3.17.0
	CompletionItem *ServerCompletionItemOptions `json:"completionItem,omitzero"`
}

Completion options.

type CompletionParams

type CompletionParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The completion context. This is only available it the client specifies
	// to send this using the client capability `textDocument.completion.contextSupport === true`
	Context *CompletionContext `json:"context,omitzero"`
}

Completion parameters

func (*CompletionParams) TextDocumentURI

func (s *CompletionParams) TextDocumentURI() DocumentUri

func (*CompletionParams) UnmarshalJSONFrom

func (s *CompletionParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CompletionRegistrationOptions

type CompletionRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Most tools trigger completion request automatically without explicitly requesting
	// it using a keyboard shortcut (e.g. Ctrl+Space). Typically they do so when the user
	// starts to type an identifier. For example if the user types `c` in a JavaScript file
	// code complete will automatically pop up present `console` besides others as a
	// completion item. Characters that make up identifiers don't need to be listed here.
	//
	// If code complete should automatically be trigger on characters not being valid inside
	// an identifier (for example `.` in JavaScript) list them in `triggerCharacters`.
	TriggerCharacters *[]string `json:"triggerCharacters,omitzero"`

	// The list of all possible characters that commit a completion. This field can be used
	// if clients don't support individual commit characters per completion item. See
	// `ClientCapabilities.textDocument.completion.completionItem.commitCharactersSupport`
	//
	// If a server provides both `allCommitCharacters` and commit characters on an individual
	// completion item the ones on the completion item win.
	//
	// Since: 3.2.0
	AllCommitCharacters *[]string `json:"allCommitCharacters,omitzero"`

	// The server provides support to resolve additional
	// information for a completion item.
	ResolveProvider *bool `json:"resolveProvider,omitzero"`

	// The server supports the following `CompletionItem` specific
	// capabilities.
	//
	// Since: 3.17.0
	CompletionItem *ServerCompletionItemOptions `json:"completionItem,omitzero"`
}

Registration options for a CompletionRequest.

func (*CompletionRegistrationOptions) UnmarshalJSONFrom

func (s *CompletionRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CompletionResolveResponse

type CompletionResolveResponse = *CompletionItem

Response type for `completionItem/resolve`

type CompletionResponse

type CompletionResponse = CompletionItemsOrListOrNull

Response type for `textDocument/completion`

type CompletionTriggerKind

type CompletionTriggerKind uint32

How a completion was triggered

const (
	// Completion was triggered by typing an identifier (24x7 code
	// complete), manual invocation (e.g Ctrl+Space) or via API.
	CompletionTriggerKindInvoked CompletionTriggerKind = 1
	// Completion was triggered by a trigger character specified by
	// the `triggerCharacters` properties of the `CompletionRegistrationOptions`.
	CompletionTriggerKindTriggerCharacter CompletionTriggerKind = 2
	// Completion was re-triggered as current completion list is incomplete
	CompletionTriggerKindTriggerForIncompleteCompletions CompletionTriggerKind = 3
)

type ConfigurationItem

type ConfigurationItem struct {
	// The scope to get the configuration section for.
	ScopeUri *URI `json:"scopeUri,omitzero"`

	// The configuration section asked for.
	Section *string `json:"section,omitzero"`
}

type ConfigurationParams

type ConfigurationParams struct {
	Items []*ConfigurationItem `json:"items"`
}

The parameters of a configuration request.

func (*ConfigurationParams) UnmarshalJSONFrom

func (s *ConfigurationParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ConfigurationResponse

type ConfigurationResponse = []any

Response type for `workspace/configuration`

type CreateFile

type CreateFile struct {
	// A create
	Kind StringLiteralCreate `json:"kind"`

	// An optional annotation identifier describing the operation.
	//
	// Since: 3.16.0
	AnnotationId *string `json:"annotationId,omitzero"`

	// The resource to create.
	Uri DocumentUri `json:"uri"`

	// Additional options
	Options *CreateFileOptions `json:"options,omitzero"`
}

Create file operation.

func (*CreateFile) UnmarshalJSONFrom

func (s *CreateFile) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type CreateFileOptions

type CreateFileOptions struct {
	// Overwrite existing file. Overwrite wins over `ignoreIfExists`
	Overwrite *bool `json:"overwrite,omitzero"`

	// Ignore if exists.
	IgnoreIfExists *bool `json:"ignoreIfExists,omitzero"`
}

Options to create a file.

type CreateFilesParams

type CreateFilesParams struct {
	// An array of all files/folders created in this operation.
	Files []*FileCreate `json:"files"`
}

The parameters sent in notifications/requests for user-initiated creation of files.

Since: 3.16.0

func (*CreateFilesParams) UnmarshalJSONFrom

func (s *CreateFilesParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DeclarationClientCapabilities

type DeclarationClientCapabilities struct {
	// Whether declaration supports dynamic registration. If this is set to `true`
	// the client supports the new `DeclarationRegistrationOptions` return value
	// for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client supports additional metadata in the form of declaration links.
	LinkSupport *bool `json:"linkSupport,omitzero"`
}

Since: 3.14.0

type DeclarationOptions

type DeclarationOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

type DeclarationParams

type DeclarationParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`
}

func (*DeclarationParams) TextDocumentURI

func (s *DeclarationParams) TextDocumentURI() DocumentUri

func (*DeclarationParams) UnmarshalJSONFrom

func (s *DeclarationParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DeclarationRegistrationOptions

type DeclarationRegistrationOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

func (*DeclarationRegistrationOptions) UnmarshalJSONFrom

func (s *DeclarationRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DeclarationResponse

type DeclarationResponse = LocationOrLocationsOrDeclarationLinksOrNull

Response type for `textDocument/declaration`

type DefinitionClientCapabilities

type DefinitionClientCapabilities struct {
	// Whether definition supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client supports additional metadata in the form of definition links.
	//
	// Since: 3.14.0
	LinkSupport *bool `json:"linkSupport,omitzero"`
}

Client Capabilities for a DefinitionRequest.

type DefinitionOptions

type DefinitionOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Server Capabilities for a DefinitionRequest.

type DefinitionParams

type DefinitionParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`
}

Parameters for a DefinitionRequest.

func (*DefinitionParams) TextDocumentURI

func (s *DefinitionParams) TextDocumentURI() DocumentUri

func (*DefinitionParams) UnmarshalJSONFrom

func (s *DefinitionParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DefinitionRegistrationOptions

type DefinitionRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Registration options for a DefinitionRequest.

func (*DefinitionRegistrationOptions) UnmarshalJSONFrom

func (s *DefinitionRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DefinitionResponse

type DefinitionResponse = LocationOrLocationsOrDefinitionLinksOrNull

Response type for `textDocument/definition`

type DeleteFile

type DeleteFile struct {
	// A delete
	Kind StringLiteralDelete `json:"kind"`

	// An optional annotation identifier describing the operation.
	//
	// Since: 3.16.0
	AnnotationId *string `json:"annotationId,omitzero"`

	// The file to delete.
	Uri DocumentUri `json:"uri"`

	// Delete options.
	Options *DeleteFileOptions `json:"options,omitzero"`
}

Delete file operation

func (*DeleteFile) UnmarshalJSONFrom

func (s *DeleteFile) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DeleteFileOptions

type DeleteFileOptions struct {
	// Delete the content recursively if a folder is denoted.
	Recursive *bool `json:"recursive,omitzero"`

	// Ignore the operation if the file doesn't exist.
	IgnoreIfNotExists *bool `json:"ignoreIfNotExists,omitzero"`
}

Delete file options

type DeleteFilesParams

type DeleteFilesParams struct {
	// An array of all files/folders deleted in this operation.
	Files []*FileDelete `json:"files"`
}

The parameters sent in notifications/requests for user-initiated deletes of files.

Since: 3.16.0

func (*DeleteFilesParams) UnmarshalJSONFrom

func (s *DeleteFilesParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type Diagnostic

type Diagnostic struct {
	// The range at which the message applies
	Range Range `json:"range"`

	// The diagnostic's severity. To avoid interpretation mismatches when a
	// server is used with different clients it is highly recommended that servers
	// always provide a severity value.
	Severity *DiagnosticSeverity `json:"severity,omitzero"`

	// The diagnostic's code, which usually appear in the user interface.
	Code *IntegerOrString `json:"code,omitzero"`

	// An optional property to describe the error code.
	// Requires the code field (above) to be present/not null.
	//
	// Since: 3.16.0
	CodeDescription *CodeDescription `json:"codeDescription,omitzero"`

	// A human-readable string describing the source of this
	// diagnostic, e.g. 'typescript' or 'super lint'. It usually
	// appears in the user interface.
	Source *string `json:"source,omitzero"`

	// The diagnostic's message. It usually appears in the user interface
	Message string `json:"message"`

	// Additional metadata about the diagnostic.
	//
	// Since: 3.15.0
	Tags *[]DiagnosticTag `json:"tags,omitzero"`

	// An array of related diagnostic information, e.g. when symbol-names within
	// a scope collide all definitions can be marked via this property.
	RelatedInformation *[]*DiagnosticRelatedInformation `json:"relatedInformation,omitzero"`

	// A data entry field that is preserved between a `textDocument/publishDiagnostics`
	// notification and `textDocument/codeAction` request.
	//
	// Since: 3.16.0
	Data *any `json:"data,omitzero"`
}

Represents a diagnostic, such as a compiler error or warning. Diagnostic objects are only valid in the scope of a resource.

func (*Diagnostic) UnmarshalJSONFrom

func (s *Diagnostic) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DiagnosticClientCapabilities

type DiagnosticClientCapabilities struct {
	// Whether the clients accepts diagnostics with related information.
	RelatedInformation *bool `json:"relatedInformation,omitzero"`

	// Client supports the tag property to provide meta data about a diagnostic.
	// Clients supporting tags have to handle unknown tags gracefully.
	//
	// Since: 3.15.0
	TagSupport *ClientDiagnosticsTagOptions `json:"tagSupport,omitzero"`

	// Client supports a codeDescription property
	//
	// Since: 3.16.0
	CodeDescriptionSupport *bool `json:"codeDescriptionSupport,omitzero"`

	// Whether code action supports the `data` property which is
	// preserved between a `textDocument/publishDiagnostics` and
	// `textDocument/codeAction` request.
	//
	// Since: 3.16.0
	DataSupport *bool `json:"dataSupport,omitzero"`

	// Whether implementation supports dynamic registration. If this is set to `true`
	// the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
	// return value for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Whether the clients supports related documents for document diagnostic pulls.
	RelatedDocumentSupport *bool `json:"relatedDocumentSupport,omitzero"`
}

Client capabilities specific to diagnostic pull requests.

Since: 3.17.0

type DiagnosticOptions

type DiagnosticOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// An optional identifier under which the diagnostics are
	// managed by the client.
	Identifier *string `json:"identifier,omitzero"`

	// Whether the language has inter file dependencies meaning that
	// editing code in one file can result in a different diagnostic
	// set in another file. Inter file dependencies are common for
	// most programming languages and typically uncommon for linters.
	InterFileDependencies bool `json:"interFileDependencies"`

	// The server provides support for workspace diagnostics as well.
	WorkspaceDiagnostics bool `json:"workspaceDiagnostics"`
}

Diagnostic options.

Since: 3.17.0

func (*DiagnosticOptions) UnmarshalJSONFrom

func (s *DiagnosticOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DiagnosticOptionsOrRegistrationOptions

type DiagnosticOptionsOrRegistrationOptions struct {
	Options             *DiagnosticOptions
	RegistrationOptions *DiagnosticRegistrationOptions
}

func (*DiagnosticOptionsOrRegistrationOptions) MarshalJSONTo

func (*DiagnosticOptionsOrRegistrationOptions) UnmarshalJSONFrom

func (o *DiagnosticOptionsOrRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DiagnosticRefreshResponse

type DiagnosticRefreshResponse = Null

Response type for `workspace/diagnostic/refresh`

type DiagnosticRegistrationOptions

type DiagnosticRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// An optional identifier under which the diagnostics are
	// managed by the client.
	Identifier *string `json:"identifier,omitzero"`

	// Whether the language has inter file dependencies meaning that
	// editing code in one file can result in a different diagnostic
	// set in another file. Inter file dependencies are common for
	// most programming languages and typically uncommon for linters.
	InterFileDependencies bool `json:"interFileDependencies"`

	// The server provides support for workspace diagnostics as well.
	WorkspaceDiagnostics bool `json:"workspaceDiagnostics"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Diagnostic registration options.

Since: 3.17.0

func (*DiagnosticRegistrationOptions) UnmarshalJSONFrom

func (s *DiagnosticRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DiagnosticRelatedInformation

type DiagnosticRelatedInformation struct {
	// The location of this related diagnostic information.
	Location Location `json:"location"`

	// The message of this related diagnostic information.
	Message string `json:"message"`
}

Represents a related message and source code location for a diagnostic. This should be used to point to code locations that cause or related to a diagnostics, e.g when duplicating a symbol in a scope.

func (*DiagnosticRelatedInformation) UnmarshalJSONFrom

func (s *DiagnosticRelatedInformation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DiagnosticServerCancellationData

type DiagnosticServerCancellationData struct {
	RetriggerRequest bool `json:"retriggerRequest"`
}

Cancellation data returned from a diagnostic request.

Since: 3.17.0

func (*DiagnosticServerCancellationData) UnmarshalJSONFrom

func (s *DiagnosticServerCancellationData) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DiagnosticSeverity

type DiagnosticSeverity uint32

The diagnostic's severity.

const (
	// Reports an error.
	DiagnosticSeverityError DiagnosticSeverity = 1
	// Reports a warning.
	DiagnosticSeverityWarning DiagnosticSeverity = 2
	// Reports an information.
	DiagnosticSeverityInformation DiagnosticSeverity = 3
	// Reports a hint.
	DiagnosticSeverityHint DiagnosticSeverity = 4
)

type DiagnosticTag

type DiagnosticTag uint32

The diagnostic tags.

Since: 3.15.0

const (
	// Unused or unnecessary code.
	//
	// Clients are allowed to render diagnostics with this tag faded out instead of having
	// an error squiggle.
	DiagnosticTagUnnecessary DiagnosticTag = 1
	// Deprecated or obsolete code.
	//
	// Clients are allowed to rendered diagnostics with this tag strike through.
	DiagnosticTagDeprecated DiagnosticTag = 2
)

type DiagnosticWorkspaceClientCapabilities

type DiagnosticWorkspaceClientCapabilities struct {
	// Whether the client implementation supports a refresh request sent from
	// the server to the client.
	//
	// Note that this event is global and will force the client to refresh all
	// pulled diagnostics currently shown. It should be used with absolute care and
	// is useful for situation where a server for example detects a project wide
	// change that requires such a calculation.
	RefreshSupport *bool `json:"refreshSupport,omitzero"`
}

Workspace client capabilities specific to diagnostic pull requests.

Since: 3.17.0

type DiagnosticsCapabilities

type DiagnosticsCapabilities struct {
	// Whether the clients accepts diagnostics with related information.
	RelatedInformation *bool `json:"relatedInformation,omitzero"`

	// Client supports the tag property to provide meta data about a diagnostic.
	// Clients supporting tags have to handle unknown tags gracefully.
	//
	// Since: 3.15.0
	TagSupport *ClientDiagnosticsTagOptions `json:"tagSupport,omitzero"`

	// Client supports a codeDescription property
	//
	// Since: 3.16.0
	CodeDescriptionSupport *bool `json:"codeDescriptionSupport,omitzero"`

	// Whether code action supports the `data` property which is
	// preserved between a `textDocument/publishDiagnostics` and
	// `textDocument/codeAction` request.
	//
	// Since: 3.16.0
	DataSupport *bool `json:"dataSupport,omitzero"`
}

General diagnostics capabilities for pull and push model.

type DidChangeConfigurationClientCapabilities

type DidChangeConfigurationClientCapabilities struct {
	// Did change configuration notification supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

type DidChangeConfigurationParams

type DidChangeConfigurationParams struct {
	// The actual changed settings
	Settings any `json:"settings"`
}

The parameters of a change configuration notification.

func (*DidChangeConfigurationParams) UnmarshalJSONFrom

func (s *DidChangeConfigurationParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidChangeConfigurationRegistrationOptions

type DidChangeConfigurationRegistrationOptions struct {
	Section *StringOrStrings `json:"section,omitzero"`
}

type DidChangeNotebookDocumentParams

type DidChangeNotebookDocumentParams struct {
	// The notebook document that did change. The version number points
	// to the version after all provided changes have been applied. If
	// only the text document content of a cell changes the notebook version
	// doesn't necessarily have to change.
	NotebookDocument VersionedNotebookDocumentIdentifier `json:"notebookDocument"`

	// The actual changes to the notebook document.
	//
	// The changes describe single state changes to the notebook document.
	// So if there are two changes c1 (at array index 0) and c2 (at array
	// index 1) for a notebook in state S then c1 moves the notebook from
	// S to S' and c2 from S' to S”. So c1 is computed on the state S and
	// c2 is computed on the state S'.
	//
	// To mirror the content of a notebook using change events use the following approach:
	// - start with the same initial content
	// - apply the 'notebookDocument/didChange' notifications in the order you receive them.
	// - apply the `NotebookChangeEvent`s in a single notification in the order
	//   you receive them.
	Change *NotebookDocumentChangeEvent `json:"change"`
}

The params sent in a change notebook document notification.

Since: 3.17.0

func (*DidChangeNotebookDocumentParams) UnmarshalJSONFrom

func (s *DidChangeNotebookDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidChangeTextDocumentParams

type DidChangeTextDocumentParams struct {
	// The document that did change. The version number points
	// to the version after all provided content changes have
	// been applied.
	TextDocument VersionedTextDocumentIdentifier `json:"textDocument"`

	// The actual content changes. The content changes describe single state changes
	// to the document. So if there are two content changes c1 (at array index 0) and
	// c2 (at array index 1) for a document in state S then c1 moves the document from
	// S to S' and c2 from S' to S”. So c1 is computed on the state S and c2 is computed
	// on the state S'.
	//
	// To mirror the content of a document using change events use the following approach:
	// - start with the same initial content
	// - apply the 'textDocument/didChange' notifications in the order you receive them.
	// - apply the `TextDocumentContentChangeEvent`s in a single notification in the order
	//   you receive them.
	ContentChanges []TextDocumentContentChangePartialOrWholeDocument `json:"contentChanges"`
}

The change text document notification's parameters.

func (*DidChangeTextDocumentParams) UnmarshalJSONFrom

func (s *DidChangeTextDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidChangeWatchedFilesClientCapabilities

type DidChangeWatchedFilesClientCapabilities struct {
	// Did change watched files notification supports dynamic registration. Please note
	// that the current protocol doesn't support static configuration for file changes
	// from the server side.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Whether the client has support for pattern
	// or not.
	//
	// Since: 3.17.0
	RelativePatternSupport *bool `json:"relativePatternSupport,omitzero"`
}

type DidChangeWatchedFilesParams

type DidChangeWatchedFilesParams struct {
	// The actual file events.
	Changes []*FileEvent `json:"changes"`
}

The watched files change notification's parameters.

func (*DidChangeWatchedFilesParams) UnmarshalJSONFrom

func (s *DidChangeWatchedFilesParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidChangeWatchedFilesRegistrationOptions

type DidChangeWatchedFilesRegistrationOptions struct {
	// The watchers to register.
	Watchers []*FileSystemWatcher `json:"watchers"`
}

Describe options to be used when registered for text document change events.

func (*DidChangeWatchedFilesRegistrationOptions) UnmarshalJSONFrom

type DidChangeWorkspaceFoldersParams

type DidChangeWorkspaceFoldersParams struct {
	// The actual workspace folder change event.
	Event *WorkspaceFoldersChangeEvent `json:"event"`
}

The parameters of a `workspace/didChangeWorkspaceFolders` notification.

func (*DidChangeWorkspaceFoldersParams) UnmarshalJSONFrom

func (s *DidChangeWorkspaceFoldersParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidCloseNotebookDocumentParams

type DidCloseNotebookDocumentParams struct {
	// The notebook document that got closed.
	NotebookDocument NotebookDocumentIdentifier `json:"notebookDocument"`

	// The text documents that represent the content
	// of a notebook cell that got closed.
	CellTextDocuments []TextDocumentIdentifier `json:"cellTextDocuments"`
}

The params sent in a close notebook document notification.

Since: 3.17.0

func (*DidCloseNotebookDocumentParams) UnmarshalJSONFrom

func (s *DidCloseNotebookDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidCloseTextDocumentParams

type DidCloseTextDocumentParams struct {
	// The document that was closed.
	TextDocument TextDocumentIdentifier `json:"textDocument"`
}

The parameters sent in a close text document notification

func (*DidCloseTextDocumentParams) TextDocumentURI

func (s *DidCloseTextDocumentParams) TextDocumentURI() DocumentUri

func (*DidCloseTextDocumentParams) UnmarshalJSONFrom

func (s *DidCloseTextDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidOpenNotebookDocumentParams

type DidOpenNotebookDocumentParams struct {
	// The notebook document that got opened.
	NotebookDocument *NotebookDocument `json:"notebookDocument"`

	// The text documents that represent the content
	// of a notebook cell.
	CellTextDocuments []*TextDocumentItem `json:"cellTextDocuments"`
}

The params sent in an open notebook document notification.

Since: 3.17.0

func (*DidOpenNotebookDocumentParams) UnmarshalJSONFrom

func (s *DidOpenNotebookDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidOpenTextDocumentParams

type DidOpenTextDocumentParams struct {
	// The document that was opened.
	TextDocument *TextDocumentItem `json:"textDocument"`
}

The parameters sent in an open text document notification

func (*DidOpenTextDocumentParams) UnmarshalJSONFrom

func (s *DidOpenTextDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidSaveNotebookDocumentParams

type DidSaveNotebookDocumentParams struct {
	// The notebook document that got saved.
	NotebookDocument NotebookDocumentIdentifier `json:"notebookDocument"`
}

The params sent in a save notebook document notification.

Since: 3.17.0

func (*DidSaveNotebookDocumentParams) UnmarshalJSONFrom

func (s *DidSaveNotebookDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DidSaveTextDocumentParams

type DidSaveTextDocumentParams struct {
	// The document that was saved.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// Optional the content when saved. Depends on the includeText value
	// when the save notification was requested.
	Text *string `json:"text,omitzero"`
}

The parameters sent in a save text document notification

func (*DidSaveTextDocumentParams) TextDocumentURI

func (s *DidSaveTextDocumentParams) TextDocumentURI() DocumentUri

func (*DidSaveTextDocumentParams) UnmarshalJSONFrom

func (s *DidSaveTextDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentColorClientCapabilities

type DocumentColorClientCapabilities struct {
	// Whether implementation supports dynamic registration. If this is set to `true`
	// the client supports the new `DocumentColorRegistrationOptions` return value
	// for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

type DocumentColorOptions

type DocumentColorOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

type DocumentColorParams

type DocumentColorParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`
}

Parameters for a DocumentColorRequest.

func (*DocumentColorParams) TextDocumentURI

func (s *DocumentColorParams) TextDocumentURI() DocumentUri

func (*DocumentColorParams) UnmarshalJSONFrom

func (s *DocumentColorParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentColorRegistrationOptions

type DocumentColorRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

func (*DocumentColorRegistrationOptions) UnmarshalJSONFrom

func (s *DocumentColorRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentColorResponse

type DocumentColorResponse = []*ColorInformation

Response type for `textDocument/documentColor`

type DocumentDiagnosticParams

type DocumentDiagnosticParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The additional identifier provided during registration.
	Identifier *string `json:"identifier,omitzero"`

	// The result id of a previous response if provided.
	PreviousResultId *string `json:"previousResultId,omitzero"`
}

Parameters of the document diagnostic request.

Since: 3.17.0

func (*DocumentDiagnosticParams) TextDocumentURI

func (s *DocumentDiagnosticParams) TextDocumentURI() DocumentUri

func (*DocumentDiagnosticParams) UnmarshalJSONFrom

func (s *DocumentDiagnosticParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentDiagnosticReportKind

type DocumentDiagnosticReportKind string

The document diagnostic report kinds.

Since: 3.17.0

const (
	// A diagnostic report with a full
	// set of problems.
	DocumentDiagnosticReportKindFull DocumentDiagnosticReportKind = "full"
	// A report indicating that the last
	// returned report is still accurate.
	DocumentDiagnosticReportKindUnchanged DocumentDiagnosticReportKind = "unchanged"
)

type DocumentDiagnosticReportPartialResult

type DocumentDiagnosticReportPartialResult struct {
	RelatedDocuments map[DocumentUri]FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport `json:"relatedDocuments"`
}

A partial result for a document diagnostic report.

Since: 3.17.0

func (*DocumentDiagnosticReportPartialResult) UnmarshalJSONFrom

func (s *DocumentDiagnosticReportPartialResult) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentDiagnosticResponse

Response type for `textDocument/diagnostic`

type DocumentFormattingClientCapabilities

type DocumentFormattingClientCapabilities struct {
	// Whether formatting supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Client capabilities of a DocumentFormattingRequest.

type DocumentFormattingOptions

type DocumentFormattingOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Provider options for a DocumentFormattingRequest.

type DocumentFormattingParams

type DocumentFormattingParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The document to format.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The format options.
	Options *FormattingOptions `json:"options"`
}

The parameters of a DocumentFormattingRequest.

func (*DocumentFormattingParams) TextDocumentURI

func (s *DocumentFormattingParams) TextDocumentURI() DocumentUri

func (*DocumentFormattingParams) UnmarshalJSONFrom

func (s *DocumentFormattingParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentFormattingRegistrationOptions

type DocumentFormattingRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Registration options for a DocumentFormattingRequest.

func (*DocumentFormattingRegistrationOptions) UnmarshalJSONFrom

func (s *DocumentFormattingRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentFormattingResponse

type DocumentFormattingResponse = TextEditsOrNull

Response type for `textDocument/formatting`

type DocumentHighlight

type DocumentHighlight struct {
	// The range this highlight applies to.
	Range Range `json:"range"`

	// The highlight kind, default is text.
	Kind *DocumentHighlightKind `json:"kind,omitzero"`
}

A document highlight is a range inside a text document which deserves special attention. Usually a document highlight is visualized by changing the background color of its range.

func (*DocumentHighlight) UnmarshalJSONFrom

func (s *DocumentHighlight) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentHighlightClientCapabilities

type DocumentHighlightClientCapabilities struct {
	// Whether document highlight supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Client Capabilities for a DocumentHighlightRequest.

type DocumentHighlightKind

type DocumentHighlightKind uint32

A document highlight kind.

const (
	// A textual occurrence.
	DocumentHighlightKindText DocumentHighlightKind = 1
	// Read-access of a symbol, like reading a variable.
	DocumentHighlightKindRead DocumentHighlightKind = 2
	// Write-access of a symbol, like writing to a variable.
	DocumentHighlightKindWrite DocumentHighlightKind = 3
)

type DocumentHighlightOptions

type DocumentHighlightOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Provider options for a DocumentHighlightRequest.

type DocumentHighlightParams

type DocumentHighlightParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`
}

Parameters for a DocumentHighlightRequest.

func (*DocumentHighlightParams) TextDocumentURI

func (s *DocumentHighlightParams) TextDocumentURI() DocumentUri

func (*DocumentHighlightParams) UnmarshalJSONFrom

func (s *DocumentHighlightParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentHighlightRegistrationOptions

type DocumentHighlightRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Registration options for a DocumentHighlightRequest.

func (*DocumentHighlightRegistrationOptions) UnmarshalJSONFrom

func (s *DocumentHighlightRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentHighlightResponse

type DocumentHighlightResponse = DocumentHighlightsOrNull

Response type for `textDocument/documentHighlight`

type DocumentHighlightsOrNull

type DocumentHighlightsOrNull struct {
	DocumentHighlights *[]*DocumentHighlight
}

func (*DocumentHighlightsOrNull) MarshalJSONTo

func (o *DocumentHighlightsOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*DocumentHighlightsOrNull) UnmarshalJSONFrom

func (o *DocumentHighlightsOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error
type DocumentLink struct {
	// The range this link applies to.
	Range Range `json:"range"`

	// The uri this link points to. If missing a resolve request is sent later.
	Target *URI `json:"target,omitzero"`

	// The tooltip text when you hover over this link.
	//
	// If a tooltip is provided, is will be displayed in a string that includes instructions on how to
	// trigger the link, such as `{0} (ctrl + click)`. The specific instructions vary depending on OS,
	// user settings, and localization.
	//
	// Since: 3.15.0
	Tooltip *string `json:"tooltip,omitzero"`

	// A data entry field that is preserved on a document link between a
	// DocumentLinkRequest and a DocumentLinkResolveRequest.
	Data *any `json:"data,omitzero"`
}

A document link is a range in a text document that links to an internal or external resource, like another text document or a web site.

func (*DocumentLink) UnmarshalJSONFrom

func (s *DocumentLink) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentLinkClientCapabilities

type DocumentLinkClientCapabilities struct {
	// Whether document link supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Whether the client supports the `tooltip` property on `DocumentLink`.
	//
	// Since: 3.15.0
	TooltipSupport *bool `json:"tooltipSupport,omitzero"`
}

The client capabilities of a DocumentLinkRequest.

type DocumentLinkOptions

type DocumentLinkOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Document links have a resolve provider as well.
	ResolveProvider *bool `json:"resolveProvider,omitzero"`
}

Provider options for a DocumentLinkRequest.

type DocumentLinkParams

type DocumentLinkParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The document to provide document links for.
	TextDocument TextDocumentIdentifier `json:"textDocument"`
}

The parameters of a DocumentLinkRequest.

func (*DocumentLinkParams) TextDocumentURI

func (s *DocumentLinkParams) TextDocumentURI() DocumentUri

func (*DocumentLinkParams) UnmarshalJSONFrom

func (s *DocumentLinkParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentLinkRegistrationOptions

type DocumentLinkRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Document links have a resolve provider as well.
	ResolveProvider *bool `json:"resolveProvider,omitzero"`
}

Registration options for a DocumentLinkRequest.

func (*DocumentLinkRegistrationOptions) UnmarshalJSONFrom

func (s *DocumentLinkRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentLinkResolveResponse

type DocumentLinkResolveResponse = *DocumentLink

Response type for `documentLink/resolve`

type DocumentLinkResponse

type DocumentLinkResponse = DocumentLinksOrNull

Response type for `textDocument/documentLink`

type DocumentLinksOrNull

type DocumentLinksOrNull struct {
	DocumentLinks *[]*DocumentLink
}

func (*DocumentLinksOrNull) MarshalJSONTo

func (o *DocumentLinksOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*DocumentLinksOrNull) UnmarshalJSONFrom

func (o *DocumentLinksOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentOnTypeFormattingClientCapabilities

type DocumentOnTypeFormattingClientCapabilities struct {
	// Whether on type formatting supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Client capabilities of a DocumentOnTypeFormattingRequest.

type DocumentOnTypeFormattingOptions

type DocumentOnTypeFormattingOptions struct {
	// A character on which formatting should be triggered, like `{`.
	FirstTriggerCharacter string `json:"firstTriggerCharacter"`

	// More trigger characters.
	MoreTriggerCharacter *[]string `json:"moreTriggerCharacter,omitzero"`
}

Provider options for a DocumentOnTypeFormattingRequest.

func (*DocumentOnTypeFormattingOptions) UnmarshalJSONFrom

func (s *DocumentOnTypeFormattingOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentOnTypeFormattingParams

type DocumentOnTypeFormattingParams struct {
	// The document to format.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position around which the on type formatting should happen.
	// This is not necessarily the exact position where the character denoted
	// by the property `ch` got typed.
	Position Position `json:"position"`

	// The character that has been typed that triggered the formatting
	// on type request. That is not necessarily the last character that
	// got inserted into the document since the client could auto insert
	// characters as well (e.g. like automatic brace completion).
	Ch string `json:"ch"`

	// The formatting options.
	Options *FormattingOptions `json:"options"`
}

The parameters of a DocumentOnTypeFormattingRequest.

func (*DocumentOnTypeFormattingParams) TextDocumentURI

func (s *DocumentOnTypeFormattingParams) TextDocumentURI() DocumentUri

func (*DocumentOnTypeFormattingParams) UnmarshalJSONFrom

func (s *DocumentOnTypeFormattingParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentOnTypeFormattingRegistrationOptions

type DocumentOnTypeFormattingRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	// A character on which formatting should be triggered, like `{`.
	FirstTriggerCharacter string `json:"firstTriggerCharacter"`

	// More trigger characters.
	MoreTriggerCharacter *[]string `json:"moreTriggerCharacter,omitzero"`
}

Registration options for a DocumentOnTypeFormattingRequest.

func (*DocumentOnTypeFormattingRegistrationOptions) UnmarshalJSONFrom

type DocumentOnTypeFormattingResponse

type DocumentOnTypeFormattingResponse = TextEditsOrNull

Response type for `textDocument/onTypeFormatting`

type DocumentRangeFormattingClientCapabilities

type DocumentRangeFormattingClientCapabilities struct {
	// Whether range formatting supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Whether the client supports formatting multiple ranges at once.
	//
	// Since: 3.18.0
	//
	// Proposed.
	RangesSupport *bool `json:"rangesSupport,omitzero"`
}

Client capabilities of a DocumentRangeFormattingRequest.

type DocumentRangeFormattingOptions

type DocumentRangeFormattingOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Whether the server supports formatting multiple ranges at once.
	//
	// Since: 3.18.0
	//
	// Proposed.
	RangesSupport *bool `json:"rangesSupport,omitzero"`
}

Provider options for a DocumentRangeFormattingRequest.

type DocumentRangeFormattingParams

type DocumentRangeFormattingParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The document to format.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The range to format
	Range Range `json:"range"`

	// The format options
	Options *FormattingOptions `json:"options"`
}

The parameters of a DocumentRangeFormattingRequest.

func (*DocumentRangeFormattingParams) TextDocumentURI

func (s *DocumentRangeFormattingParams) TextDocumentURI() DocumentUri

func (*DocumentRangeFormattingParams) UnmarshalJSONFrom

func (s *DocumentRangeFormattingParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentRangeFormattingRegistrationOptions

type DocumentRangeFormattingRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Whether the server supports formatting multiple ranges at once.
	//
	// Since: 3.18.0
	//
	// Proposed.
	RangesSupport *bool `json:"rangesSupport,omitzero"`
}

Registration options for a DocumentRangeFormattingRequest.

func (*DocumentRangeFormattingRegistrationOptions) UnmarshalJSONFrom

type DocumentRangeFormattingResponse

type DocumentRangeFormattingResponse = TextEditsOrNull

Response type for `textDocument/rangeFormatting`

type DocumentRangesFormattingParams

type DocumentRangesFormattingParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The document to format.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The ranges to format
	Ranges []Range `json:"ranges"`

	// The format options
	Options *FormattingOptions `json:"options"`
}

The parameters of a DocumentRangesFormattingRequest.

Since: 3.18.0

Proposed.

func (*DocumentRangesFormattingParams) TextDocumentURI

func (s *DocumentRangesFormattingParams) TextDocumentURI() DocumentUri

func (*DocumentRangesFormattingParams) UnmarshalJSONFrom

func (s *DocumentRangesFormattingParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentRangesFormattingResponse

type DocumentRangesFormattingResponse = TextEditsOrNull

Response type for `textDocument/rangesFormatting`

type DocumentSelectorOrNull

func (*DocumentSelectorOrNull) MarshalJSONTo

func (o *DocumentSelectorOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*DocumentSelectorOrNull) UnmarshalJSONFrom

func (o *DocumentSelectorOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentSymbol

type DocumentSymbol struct {
	// The name of this symbol. Will be displayed in the user interface and therefore must not be
	// an empty string or a string only consisting of white spaces.
	Name string `json:"name"`

	// More detail for this symbol, e.g the signature of a function.
	Detail *string `json:"detail,omitzero"`

	// The kind of this symbol.
	Kind SymbolKind `json:"kind"`

	// Tags for this document symbol.
	//
	// Since: 3.16.0
	Tags *[]SymbolTag `json:"tags,omitzero"`

	// Indicates if this symbol is deprecated.
	//
	// Deprecated: Use tags instead
	Deprecated *bool `json:"deprecated,omitzero"`

	// The range enclosing this symbol not including leading/trailing whitespace but everything else
	// like comments. This information is typically used to determine if the clients cursor is
	// inside the symbol to reveal in the symbol in the UI.
	Range Range `json:"range"`

	// The range that should be selected and revealed when this symbol is being picked, e.g the name of a function.
	// Must be contained by the `range`.
	SelectionRange Range `json:"selectionRange"`

	// Children of this symbol, e.g. properties of a class.
	Children *[]*DocumentSymbol `json:"children,omitzero"`
}

Represents programming constructs like variables, classes, interfaces etc. that appear in a document. Document symbols can be hierarchical and they have two ranges: one that encloses its definition and one that points to its most interesting range, e.g. the range of an identifier.

func (*DocumentSymbol) UnmarshalJSONFrom

func (s *DocumentSymbol) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentSymbolClientCapabilities

type DocumentSymbolClientCapabilities struct {
	// Whether document symbol supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Specific capabilities for the `SymbolKind` in the
	// `textDocument/documentSymbol` request.
	SymbolKind *ClientSymbolKindOptions `json:"symbolKind,omitzero"`

	// The client supports hierarchical document symbols.
	HierarchicalDocumentSymbolSupport *bool `json:"hierarchicalDocumentSymbolSupport,omitzero"`

	// The client supports tags on `SymbolInformation`. Tags are supported on
	// `DocumentSymbol` if `hierarchicalDocumentSymbolSupport` is set to true.
	// Clients supporting tags have to handle unknown tags gracefully.
	//
	// Since: 3.16.0
	TagSupport *ClientSymbolTagOptions `json:"tagSupport,omitzero"`

	// The client supports an additional label presented in the UI when
	// registering a document symbol provider.
	//
	// Since: 3.16.0
	LabelSupport *bool `json:"labelSupport,omitzero"`
}

Client Capabilities for a DocumentSymbolRequest.

type DocumentSymbolOptions

type DocumentSymbolOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// A human-readable string that is shown when multiple outlines trees
	// are shown for the same document.
	//
	// Since: 3.16.0
	Label *string `json:"label,omitzero"`
}

Provider options for a DocumentSymbolRequest.

type DocumentSymbolParams

type DocumentSymbolParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`
}

Parameters for a DocumentSymbolRequest.

func (*DocumentSymbolParams) TextDocumentURI

func (s *DocumentSymbolParams) TextDocumentURI() DocumentUri

func (*DocumentSymbolParams) UnmarshalJSONFrom

func (s *DocumentSymbolParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentSymbolRegistrationOptions

type DocumentSymbolRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// A human-readable string that is shown when multiple outlines trees
	// are shown for the same document.
	//
	// Since: 3.16.0
	Label *string `json:"label,omitzero"`
}

Registration options for a DocumentSymbolRequest.

func (*DocumentSymbolRegistrationOptions) UnmarshalJSONFrom

func (s *DocumentSymbolRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type DocumentSymbolResponse

type DocumentSymbolResponse = SymbolInformationsOrDocumentSymbolsOrNull

Response type for `textDocument/documentSymbol`

type DocumentUri

type DocumentUri string // !!!

func (DocumentUri) FileName

func (uri DocumentUri) FileName() string

func (DocumentUri) Path

func (uri DocumentUri) Path(useCaseSensitiveFileNames bool) tspath.Path

type DocumentUriOrNull

type DocumentUriOrNull struct {
	DocumentUri *DocumentUri
}

func (*DocumentUriOrNull) MarshalJSONTo

func (o *DocumentUriOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*DocumentUriOrNull) UnmarshalJSONFrom

func (o *DocumentUriOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type EditRangeWithInsertReplace

type EditRangeWithInsertReplace struct {
	Insert Range `json:"insert"`

	Replace Range `json:"replace"`
}

Edit range variant that includes ranges for insert and replace operations.

Since: 3.18.0

func (*EditRangeWithInsertReplace) UnmarshalJSONFrom

func (s *EditRangeWithInsertReplace) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ErrorCode

type ErrorCode struct {
	Name string
	Code int32
}

func (*ErrorCode) Error

func (e *ErrorCode) Error() string

type ErrorCodes

type ErrorCodes int32

Predefined error codes.

const (
	ErrorCodesParseError     ErrorCodes = -32700
	ErrorCodesInvalidRequest ErrorCodes = -32600
	ErrorCodesMethodNotFound ErrorCodes = -32601
	ErrorCodesInvalidParams  ErrorCodes = -32602
	ErrorCodesInternalError  ErrorCodes = -32603
	// Error code indicating that a server received a notification or
	// request before the server has received the `initialize` request.
	ErrorCodesServerNotInitialized ErrorCodes = -32002
	ErrorCodesUnknownErrorCode     ErrorCodes = -32001
)

type ExecuteCommandClientCapabilities

type ExecuteCommandClientCapabilities struct {
	// Execute command supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

The client capabilities of a ExecuteCommandRequest.

type ExecuteCommandOptions

type ExecuteCommandOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The commands to be executed on the server
	Commands []string `json:"commands"`
}

The server capabilities of a ExecuteCommandRequest.

func (*ExecuteCommandOptions) UnmarshalJSONFrom

func (s *ExecuteCommandOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ExecuteCommandParams

type ExecuteCommandParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The identifier of the actual command handler.
	Command string `json:"command"`

	// Arguments that the command should be invoked with.
	Arguments *[]any `json:"arguments,omitzero"`
}

The parameters of a ExecuteCommandRequest.

func (*ExecuteCommandParams) UnmarshalJSONFrom

func (s *ExecuteCommandParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ExecuteCommandRegistrationOptions

type ExecuteCommandRegistrationOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The commands to be executed on the server
	Commands []string `json:"commands"`
}

Registration options for a ExecuteCommandRequest.

func (*ExecuteCommandRegistrationOptions) UnmarshalJSONFrom

func (s *ExecuteCommandRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ExecuteCommandResponse

type ExecuteCommandResponse = LSPAnyOrNull

Response type for `workspace/executeCommand`

type ExecutionSummary

type ExecutionSummary struct {
	// A strict monotonically increasing value
	// indicating the execution order of a cell
	// inside a notebook.
	ExecutionOrder uint32 `json:"executionOrder"`

	// Whether the execution was successful or
	// not if known by the client.
	Success *bool `json:"success,omitzero"`
}

func (*ExecutionSummary) UnmarshalJSONFrom

func (s *ExecutionSummary) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FailureHandlingKind

type FailureHandlingKind string
const (
	// Applying the workspace change is simply aborted if one of the changes provided
	// fails. All operations executed before the failing operation stay executed.
	FailureHandlingKindAbort FailureHandlingKind = "abort"
	// All operations are executed transactional. That means they either all
	// succeed or no changes at all are applied to the workspace.
	FailureHandlingKindTransactional FailureHandlingKind = "transactional"
	// If the workspace edit contains only textual file changes they are executed transactional.
	// If resource changes (create, rename or delete file) are part of the change the failure
	// handling strategy is abort.
	FailureHandlingKindTextOnlyTransactional FailureHandlingKind = "textOnlyTransactional"
	// The client tries to undo the operations already executed. But there is no
	// guarantee that this is succeeding.
	FailureHandlingKindUndo FailureHandlingKind = "undo"
)

type FileChangeType

type FileChangeType uint32

The file event type

const (
	// The file got created.
	FileChangeTypeCreated FileChangeType = 1
	// The file got changed.
	FileChangeTypeChanged FileChangeType = 2
	// The file got deleted.
	FileChangeTypeDeleted FileChangeType = 3
)

type FileCreate

type FileCreate struct {
	// A file:// URI for the location of the file/folder being created.
	Uri string `json:"uri"`
}

Represents information on a file/folder create.

Since: 3.16.0

func (*FileCreate) UnmarshalJSONFrom

func (s *FileCreate) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FileDelete

type FileDelete struct {
	// A file:// URI for the location of the file/folder being deleted.
	Uri string `json:"uri"`
}

Represents information on a file/folder delete.

Since: 3.16.0

func (*FileDelete) UnmarshalJSONFrom

func (s *FileDelete) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FileEvent

type FileEvent struct {
	// The file's uri.
	Uri DocumentUri `json:"uri"`

	// The change type.
	Type FileChangeType `json:"type"`
}

An event describing a file change.

func (*FileEvent) UnmarshalJSONFrom

func (s *FileEvent) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FileOperationClientCapabilities

type FileOperationClientCapabilities struct {
	// Whether the client supports dynamic registration for file requests/notifications.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client has support for sending didCreateFiles notifications.
	DidCreate *bool `json:"didCreate,omitzero"`

	// The client has support for sending willCreateFiles requests.
	WillCreate *bool `json:"willCreate,omitzero"`

	// The client has support for sending didRenameFiles notifications.
	DidRename *bool `json:"didRename,omitzero"`

	// The client has support for sending willRenameFiles requests.
	WillRename *bool `json:"willRename,omitzero"`

	// The client has support for sending didDeleteFiles notifications.
	DidDelete *bool `json:"didDelete,omitzero"`

	// The client has support for sending willDeleteFiles requests.
	WillDelete *bool `json:"willDelete,omitzero"`
}

Capabilities relating to events from file operations by the user in the client.

These events do not come from the file system, they come from user operations like renaming a file in the UI.

Since: 3.16.0

type FileOperationFilter

type FileOperationFilter struct {
	// A Uri scheme like `file` or `untitled`.
	Scheme *string `json:"scheme,omitzero"`

	// The actual file operation pattern.
	Pattern *FileOperationPattern `json:"pattern"`
}

A filter to describe in which file operation requests or notifications the server is interested in receiving.

Since: 3.16.0

func (*FileOperationFilter) UnmarshalJSONFrom

func (s *FileOperationFilter) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FileOperationOptions

type FileOperationOptions struct {
	// The server is interested in receiving didCreateFiles notifications.
	DidCreate *FileOperationRegistrationOptions `json:"didCreate,omitzero"`

	// The server is interested in receiving willCreateFiles requests.
	WillCreate *FileOperationRegistrationOptions `json:"willCreate,omitzero"`

	// The server is interested in receiving didRenameFiles notifications.
	DidRename *FileOperationRegistrationOptions `json:"didRename,omitzero"`

	// The server is interested in receiving willRenameFiles requests.
	WillRename *FileOperationRegistrationOptions `json:"willRename,omitzero"`

	// The server is interested in receiving didDeleteFiles file notifications.
	DidDelete *FileOperationRegistrationOptions `json:"didDelete,omitzero"`

	// The server is interested in receiving willDeleteFiles file requests.
	WillDelete *FileOperationRegistrationOptions `json:"willDelete,omitzero"`
}

Options for notifications/requests for user operations on files.

Since: 3.16.0

type FileOperationPattern

type FileOperationPattern struct {
	// The glob pattern to match. Glob patterns can have the following syntax:
	// - `*` to match one or more characters in a path segment
	// - `?` to match on one character in a path segment
	// - `**` to match any number of path segments, including none
	// - `{}` to group sub patterns into an OR expression. (e.g. `**​/*.{ts,js}` matches all TypeScript and JavaScript files)
	// - `[]` to declare a range of characters to match in a path segment (e.g., `example.[0-9]` to match on `example.0`, `example.1`, …)
	// - `[!...]` to negate a range of characters to match in a path segment (e.g., `example.[!0-9]` to match on `example.a`, `example.b`, but not `example.0`)
	Glob string `json:"glob"`

	// Whether to match files or folders with this pattern.
	//
	// Matches both if undefined.
	Matches *FileOperationPatternKind `json:"matches,omitzero"`

	// Additional options used during matching.
	Options *FileOperationPatternOptions `json:"options,omitzero"`
}

A pattern to describe in which file operation requests or notifications the server is interested in receiving.

Since: 3.16.0

func (*FileOperationPattern) UnmarshalJSONFrom

func (s *FileOperationPattern) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FileOperationPatternKind

type FileOperationPatternKind string

A pattern kind describing if a glob pattern matches a file a folder or both.

Since: 3.16.0

const (
	// The pattern matches a file only.
	FileOperationPatternKindfile FileOperationPatternKind = "file"
	// The pattern matches a folder only.
	FileOperationPatternKindfolder FileOperationPatternKind = "folder"
)

type FileOperationPatternOptions

type FileOperationPatternOptions struct {
	// The pattern should be matched ignoring casing.
	IgnoreCase *bool `json:"ignoreCase,omitzero"`
}

Matching options for the file operation pattern.

Since: 3.16.0

type FileOperationRegistrationOptions

type FileOperationRegistrationOptions struct {
	// The actual filters.
	Filters []*FileOperationFilter `json:"filters"`
}

The options to register for file operations.

Since: 3.16.0

func (*FileOperationRegistrationOptions) UnmarshalJSONFrom

func (s *FileOperationRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FileRename

type FileRename struct {
	// A file:// URI for the original location of the file/folder being renamed.
	OldUri string `json:"oldUri"`

	// A file:// URI for the new location of the file/folder being renamed.
	NewUri string `json:"newUri"`
}

Represents information on a file/folder rename.

Since: 3.16.0

func (*FileRename) UnmarshalJSONFrom

func (s *FileRename) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FileSystemWatcher

type FileSystemWatcher struct {
	// The glob pattern to watch. See pattern for more detail.
	//
	// Since: 3.17.0 support for relative patterns.
	GlobPattern PatternOrRelativePattern `json:"globPattern"`

	// The kind of events of interest. If omitted it defaults
	// to WatchKind.Create | WatchKind.Change | WatchKind.Delete
	// which is 7.
	Kind *WatchKind `json:"kind,omitzero"`
}

func (*FileSystemWatcher) UnmarshalJSONFrom

func (s *FileSystemWatcher) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FoldingRange

type FoldingRange struct {
	// The zero-based start line of the range to fold. The folded area starts after the line's last character.
	// To be valid, the end must be zero or larger and smaller than the number of lines in the document.
	StartLine uint32 `json:"startLine"`

	// The zero-based character offset from where the folded range starts. If not defined, defaults to the length of the start line.
	StartCharacter *uint32 `json:"startCharacter,omitzero"`

	// The zero-based end line of the range to fold. The folded area ends with the line's last character.
	// To be valid, the end must be zero or larger and smaller than the number of lines in the document.
	EndLine uint32 `json:"endLine"`

	// The zero-based character offset before the folded range ends. If not defined, defaults to the length of the end line.
	EndCharacter *uint32 `json:"endCharacter,omitzero"`

	// Describes the kind of the folding range such as 'comment' or 'region'. The kind
	// is used to categorize folding ranges and used by commands like 'Fold all comments'.
	// See FoldingRangeKind for an enumeration of standardized kinds.
	Kind *FoldingRangeKind `json:"kind,omitzero"`

	// The text that the client should show when the specified range is
	// collapsed. If not defined or not supported by the client, a default
	// will be chosen by the client.
	//
	// Since: 3.17.0
	CollapsedText *string `json:"collapsedText,omitzero"`
}

Represents a folding range. To be valid, start and end line must be bigger than zero and smaller than the number of lines in the document. Clients are free to ignore invalid ranges.

func (*FoldingRange) UnmarshalJSONFrom

func (s *FoldingRange) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FoldingRangeClientCapabilities

type FoldingRangeClientCapabilities struct {
	// Whether implementation supports dynamic registration for folding range
	// providers. If this is set to `true` the client supports the new
	// `FoldingRangeRegistrationOptions` return value for the corresponding
	// server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The maximum number of folding ranges that the client prefers to receive
	// per document. The value serves as a hint, servers are free to follow the
	// limit.
	RangeLimit *uint32 `json:"rangeLimit,omitzero"`

	// If set, the client signals that it only supports folding complete lines.
	// If set, client will ignore specified `startCharacter` and `endCharacter`
	// properties in a FoldingRange.
	LineFoldingOnly *bool `json:"lineFoldingOnly,omitzero"`

	// Specific options for the folding range kind.
	//
	// Since: 3.17.0
	FoldingRangeKind *ClientFoldingRangeKindOptions `json:"foldingRangeKind,omitzero"`

	// Specific options for the folding range.
	//
	// Since: 3.17.0
	FoldingRange *ClientFoldingRangeOptions `json:"foldingRange,omitzero"`
}

type FoldingRangeKind

type FoldingRangeKind string

A set of predefined range kinds.

const (
	// Folding range for a comment
	FoldingRangeKindComment FoldingRangeKind = "comment"
	// Folding range for an import or include
	FoldingRangeKindImports FoldingRangeKind = "imports"
	// Folding range for a region (e.g. `#region`)
	FoldingRangeKindRegion FoldingRangeKind = "region"
)

type FoldingRangeOptions

type FoldingRangeOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

type FoldingRangeParams

type FoldingRangeParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`
}

Parameters for a FoldingRangeRequest.

func (*FoldingRangeParams) TextDocumentURI

func (s *FoldingRangeParams) TextDocumentURI() DocumentUri

func (*FoldingRangeParams) UnmarshalJSONFrom

func (s *FoldingRangeParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FoldingRangeRefreshResponse

type FoldingRangeRefreshResponse = Null

Response type for `workspace/foldingRange/refresh`

type FoldingRangeRegistrationOptions

type FoldingRangeRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

func (*FoldingRangeRegistrationOptions) UnmarshalJSONFrom

func (s *FoldingRangeRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FoldingRangeResponse

type FoldingRangeResponse = FoldingRangesOrNull

Response type for `textDocument/foldingRange`

type FoldingRangeWorkspaceClientCapabilities

type FoldingRangeWorkspaceClientCapabilities struct {
	// Whether the client implementation supports a refresh request sent from the
	// server to the client.
	//
	// Note that this event is global and will force the client to refresh all
	// folding ranges currently shown. It should be used with absolute care and is
	// useful for situation where a server for example detects a project wide
	// change that requires such a calculation.
	//
	// Since: 3.18.0
	//
	// Proposed.
	RefreshSupport *bool `json:"refreshSupport,omitzero"`
}

Client workspace capabilities specific to folding ranges

Since: 3.18.0

Proposed.

type FoldingRangesOrNull

type FoldingRangesOrNull struct {
	FoldingRanges *[]*FoldingRange
}

func (*FoldingRangesOrNull) MarshalJSONTo

func (o *FoldingRangesOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*FoldingRangesOrNull) UnmarshalJSONFrom

func (o *FoldingRangesOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FormattingOptions

type FormattingOptions struct {
	// Size of a tab in spaces.
	TabSize uint32 `json:"tabSize"`

	// Prefer spaces over tabs.
	InsertSpaces bool `json:"insertSpaces"`

	// Trim trailing whitespace on a line.
	//
	// Since: 3.15.0
	TrimTrailingWhitespace *bool `json:"trimTrailingWhitespace,omitzero"`

	// Insert a newline character at the end of the file if one does not exist.
	//
	// Since: 3.15.0
	InsertFinalNewline *bool `json:"insertFinalNewline,omitzero"`

	// Trim all newlines after the final newline at the end of the file.
	//
	// Since: 3.15.0
	TrimFinalNewlines *bool `json:"trimFinalNewlines,omitzero"`
}

Value-object describing what options formatting should use.

func (*FormattingOptions) UnmarshalJSONFrom

func (s *FormattingOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FullDocumentDiagnosticReport

type FullDocumentDiagnosticReport struct {
	// A full document diagnostic report.
	Kind StringLiteralFull `json:"kind"`

	// An optional result id. If provided it will
	// be sent on the next diagnostic request for the
	// same document.
	ResultId *string `json:"resultId,omitzero"`

	// The actual items.
	Items []*Diagnostic `json:"items"`
}

A diagnostic report with a full set of problems.

Since: 3.17.0

func (*FullDocumentDiagnosticReport) UnmarshalJSONFrom

func (s *FullDocumentDiagnosticReport) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport

type FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport struct {
	FullDocumentDiagnosticReport      *FullDocumentDiagnosticReport
	UnchangedDocumentDiagnosticReport *UnchangedDocumentDiagnosticReport
}

func (*FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport) MarshalJSONTo

func (*FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport) UnmarshalJSONFrom

type GeneralClientCapabilities

type GeneralClientCapabilities struct {
	// Client capability that signals how the client
	// handles stale requests (e.g. a request
	// for which the client will not process the response
	// anymore since the information is outdated).
	//
	// Since: 3.17.0
	StaleRequestSupport *StaleRequestSupportOptions `json:"staleRequestSupport,omitzero"`

	// Client capabilities specific to regular expressions.
	//
	// Since: 3.16.0
	RegularExpressions *RegularExpressionsClientCapabilities `json:"regularExpressions,omitzero"`

	// Client capabilities specific to the client's markdown parser.
	//
	// Since: 3.16.0
	Markdown *MarkdownClientCapabilities `json:"markdown,omitzero"`

	// The position encodings supported by the client. Client and server
	// have to agree on the same position encoding to ensure that offsets
	// (e.g. character position in a line) are interpreted the same on both
	// sides.
	//
	// To keep the protocol backwards compatible the following applies: if
	// the value 'utf-16' is missing from the array of position encodings
	// servers can assume that the client supports UTF-16. UTF-16 is
	// therefore a mandatory encoding.
	//
	// If omitted it defaults to ['utf-16'].
	//
	// Implementation considerations: since the conversion from one encoding
	// into another requires the content of the file / line the conversion
	// is best done where the file is read which is usually on the server
	// side.
	//
	// Since: 3.17.0
	PositionEncodings *[]PositionEncodingKind `json:"positionEncodings,omitzero"`
}

General client capabilities.

Since: 3.16.0

type HasTextDocumentURI

type HasTextDocumentURI interface {
	TextDocumentURI() DocumentUri
}

type Hover

type Hover struct {
	// The hover's content
	Contents MarkupContentOrStringOrMarkedStringWithLanguageOrMarkedStrings `json:"contents"`

	// An optional range inside the text document that is used to
	// visualize the hover, e.g. by changing the background color.
	Range *Range `json:"range,omitzero"`
}

The result of a hover request.

func (*Hover) UnmarshalJSONFrom

func (s *Hover) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type HoverClientCapabilities

type HoverClientCapabilities struct {
	// Whether hover supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Client supports the following content formats for the content
	// property. The order describes the preferred format of the client.
	ContentFormat *[]MarkupKind `json:"contentFormat,omitzero"`
}

type HoverOptions

type HoverOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Hover options.

type HoverOrNull

type HoverOrNull struct {
	Hover *Hover
}

func (*HoverOrNull) MarshalJSONTo

func (o *HoverOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*HoverOrNull) UnmarshalJSONFrom

func (o *HoverOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type HoverParams

type HoverParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`
}

Parameters for a HoverRequest.

func (*HoverParams) TextDocumentURI

func (s *HoverParams) TextDocumentURI() DocumentUri

func (*HoverParams) UnmarshalJSONFrom

func (s *HoverParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type HoverRegistrationOptions

type HoverRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Registration options for a HoverRequest.

func (*HoverRegistrationOptions) UnmarshalJSONFrom

func (s *HoverRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type HoverResponse

type HoverResponse = HoverOrNull

Response type for `textDocument/hover`

type ID

type ID struct {
	// contains filtered or unexported fields
}

func NewID

func NewID(rawValue IntegerOrString) *ID

func NewIDString

func NewIDString(str string) *ID

func (*ID) MarshalJSON

func (id *ID) MarshalJSON() ([]byte, error)

func (*ID) MustInt

func (id *ID) MustInt() int32

func (*ID) String

func (id *ID) String() string

func (*ID) TryInt

func (id *ID) TryInt() (int32, bool)

func (*ID) UnmarshalJSON

func (id *ID) UnmarshalJSON(data []byte) error

type ImplementationClientCapabilities

type ImplementationClientCapabilities struct {
	// Whether implementation supports dynamic registration. If this is set to `true`
	// the client supports the new `ImplementationRegistrationOptions` return value
	// for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client supports additional metadata in the form of definition links.
	//
	// Since: 3.14.0
	LinkSupport *bool `json:"linkSupport,omitzero"`
}

Since: 3.6.0

type ImplementationOptions

type ImplementationOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

type ImplementationParams

type ImplementationParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`
}

func (*ImplementationParams) TextDocumentURI

func (s *ImplementationParams) TextDocumentURI() DocumentUri

func (*ImplementationParams) UnmarshalJSONFrom

func (s *ImplementationParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ImplementationRegistrationOptions

type ImplementationRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

func (*ImplementationRegistrationOptions) UnmarshalJSONFrom

func (s *ImplementationRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ImplementationResponse

type ImplementationResponse = LocationOrLocationsOrDefinitionLinksOrNull

Response type for `textDocument/implementation`

type InitializeError

type InitializeError struct {
	// Indicates whether the client execute the following retry logic:
	// (1) show the message provided by the ResponseError to the user
	// (2) user selects retry or cancel
	// (3) if user selected retry the initialize method is sent again.
	Retry bool `json:"retry"`
}

The data type of the ResponseError if the initialize request fails.

func (*InitializeError) UnmarshalJSONFrom

func (s *InitializeError) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InitializeParams

type InitializeParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The process Id of the parent process that started
	// the server.
	//
	// Is `null` if the process has not been started by another process.
	// If the parent process is not alive then the server should exit.
	ProcessId IntegerOrNull `json:"processId"`

	// Information about the client
	//
	// Since: 3.15.0
	ClientInfo *ClientInfo `json:"clientInfo,omitzero"`

	// The locale the client is currently showing the user interface
	// in. This must not necessarily be the locale of the operating
	// system.
	//
	// Uses IETF language tags as the value's syntax
	// (See https://en.wikipedia.org/wiki/IETF_language_tag)
	//
	// Since: 3.16.0
	Locale *string `json:"locale,omitzero"`

	// The rootPath of the workspace. Is null
	// if no folder is open.
	//
	// Deprecated: in favour of rootUri.
	RootPath *StringOrNull `json:"rootPath,omitzero"`

	// The rootUri of the workspace. Is null if no
	// folder is open. If both `rootPath` and `rootUri` are set
	// `rootUri` wins.
	//
	// Deprecated: in favour of workspaceFolders.
	RootUri DocumentUriOrNull `json:"rootUri"`

	// The capabilities provided by the client (editor or tool)
	Capabilities *ClientCapabilities `json:"capabilities"`

	// User provided initialization options.
	InitializationOptions *any `json:"initializationOptions,omitzero"`

	// The initial trace setting. If omitted trace is disabled ('off').
	Trace *TraceValue `json:"trace,omitzero"`

	// The workspace folders configured in the client when the server starts.
	//
	// This property is only available if the client supports workspace folders.
	// It can be `null` if the client supports workspace folders but none are
	// configured.
	//
	// Since: 3.6.0
	WorkspaceFolders *WorkspaceFoldersOrNull `json:"workspaceFolders,omitzero"`
}

func (*InitializeParams) UnmarshalJSONFrom

func (s *InitializeParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InitializeParamsBase

type InitializeParamsBase struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The process Id of the parent process that started
	// the server.
	//
	// Is `null` if the process has not been started by another process.
	// If the parent process is not alive then the server should exit.
	ProcessId IntegerOrNull `json:"processId"`

	// Information about the client
	//
	// Since: 3.15.0
	ClientInfo *ClientInfo `json:"clientInfo,omitzero"`

	// The locale the client is currently showing the user interface
	// in. This must not necessarily be the locale of the operating
	// system.
	//
	// Uses IETF language tags as the value's syntax
	// (See https://en.wikipedia.org/wiki/IETF_language_tag)
	//
	// Since: 3.16.0
	Locale *string `json:"locale,omitzero"`

	// The rootPath of the workspace. Is null
	// if no folder is open.
	//
	// Deprecated: in favour of rootUri.
	RootPath *StringOrNull `json:"rootPath,omitzero"`

	// The rootUri of the workspace. Is null if no
	// folder is open. If both `rootPath` and `rootUri` are set
	// `rootUri` wins.
	//
	// Deprecated: in favour of workspaceFolders.
	RootUri DocumentUriOrNull `json:"rootUri"`

	// The capabilities provided by the client (editor or tool)
	Capabilities *ClientCapabilities `json:"capabilities"`

	// User provided initialization options.
	InitializationOptions *any `json:"initializationOptions,omitzero"`

	// The initial trace setting. If omitted trace is disabled ('off').
	Trace *TraceValue `json:"trace,omitzero"`
}

The initialize parameters

func (*InitializeParamsBase) UnmarshalJSONFrom

func (s *InitializeParamsBase) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InitializeResponse

type InitializeResponse = *InitializeResult

Response type for `initialize`

type InitializeResult

type InitializeResult struct {
	// The capabilities the language server provides.
	Capabilities *ServerCapabilities `json:"capabilities"`

	// Information about the server.
	//
	// Since: 3.15.0
	ServerInfo *ServerInfo `json:"serverInfo,omitzero"`
}

The result returned from an initialize request.

func (*InitializeResult) UnmarshalJSONFrom

func (s *InitializeResult) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InitializedParams

type InitializedParams struct{}

type InlayHint

type InlayHint struct {
	// The position of this hint.
	//
	// If multiple hints have the same position, they will be shown in the order
	// they appear in the response.
	Position Position `json:"position"`

	// The label of this hint. A human readable string or an array of
	// InlayHintLabelPart label parts.
	//
	// *Note* that neither the string nor the label part can be empty.
	Label StringOrInlayHintLabelParts `json:"label"`

	// The kind of this hint. Can be omitted in which case the client
	// should fall back to a reasonable default.
	Kind *InlayHintKind `json:"kind,omitzero"`

	// Optional text edits that are performed when accepting this inlay hint.
	//
	// *Note* that edits are expected to change the document so that the inlay
	// hint (or its nearest variant) is now part of the document and the inlay
	// hint itself is now obsolete.
	TextEdits *[]*TextEdit `json:"textEdits,omitzero"`

	// The tooltip text when you hover over this item.
	Tooltip *StringOrMarkupContent `json:"tooltip,omitzero"`

	// Render padding before the hint.
	//
	// Note: Padding should use the editor's background color, not the
	// background color of the hint itself. That means padding can be used
	// to visually align/separate an inlay hint.
	PaddingLeft *bool `json:"paddingLeft,omitzero"`

	// Render padding after the hint.
	//
	// Note: Padding should use the editor's background color, not the
	// background color of the hint itself. That means padding can be used
	// to visually align/separate an inlay hint.
	PaddingRight *bool `json:"paddingRight,omitzero"`

	// A data entry field that is preserved on an inlay hint between
	// a `textDocument/inlayHint` and a `inlayHint/resolve` request.
	Data *any `json:"data,omitzero"`
}

Inlay hint information.

Since: 3.17.0

func (*InlayHint) UnmarshalJSONFrom

func (s *InlayHint) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlayHintClientCapabilities

type InlayHintClientCapabilities struct {
	// Whether inlay hints support dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Indicates which properties a client can resolve lazily on an inlay
	// hint.
	ResolveSupport *ClientInlayHintResolveOptions `json:"resolveSupport,omitzero"`
}

Inlay hint client capabilities.

Since: 3.17.0

type InlayHintKind

type InlayHintKind uint32

Inlay hint kinds.

Since: 3.17.0

const (
	// An inlay hint that for a type annotation.
	InlayHintKindType InlayHintKind = 1
	// An inlay hint that is for a parameter.
	InlayHintKindParameter InlayHintKind = 2
)

type InlayHintLabelPart

type InlayHintLabelPart struct {
	// The value of this label part.
	Value string `json:"value"`

	// The tooltip text when you hover over this label part. Depending on
	// the client capability `inlayHint.resolveSupport` clients might resolve
	// this property late using the resolve request.
	Tooltip *StringOrMarkupContent `json:"tooltip,omitzero"`

	// An optional source code location that represents this
	// label part.
	//
	// The editor will use this location for the hover and for code navigation
	// features: This part will become a clickable link that resolves to the
	// definition of the symbol at the given location (not necessarily the
	// location itself), it shows the hover that shows at the given location,
	// and it shows a context menu with further code navigation commands.
	//
	// Depending on the client capability `inlayHint.resolveSupport` clients
	// might resolve this property late using the resolve request.
	Location *Location `json:"location,omitzero"`

	// An optional command for this label part.
	//
	// Depending on the client capability `inlayHint.resolveSupport` clients
	// might resolve this property late using the resolve request.
	Command *Command `json:"command,omitzero"`
}

An inlay hint label part allows for interactive and composite labels of inlay hints.

Since: 3.17.0

func (*InlayHintLabelPart) UnmarshalJSONFrom

func (s *InlayHintLabelPart) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlayHintOptions

type InlayHintOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The server provides support to resolve additional
	// information for an inlay hint item.
	ResolveProvider *bool `json:"resolveProvider,omitzero"`
}

Inlay hint options used during static registration.

Since: 3.17.0

type InlayHintParams

type InlayHintParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The document range for which inlay hints should be computed.
	Range Range `json:"range"`
}

A parameter literal used in inlay hint requests.

Since: 3.17.0

func (*InlayHintParams) TextDocumentURI

func (s *InlayHintParams) TextDocumentURI() DocumentUri

func (*InlayHintParams) UnmarshalJSONFrom

func (s *InlayHintParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlayHintRefreshResponse

type InlayHintRefreshResponse = Null

Response type for `workspace/inlayHint/refresh`

type InlayHintRegistrationOptions

type InlayHintRegistrationOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The server provides support to resolve additional
	// information for an inlay hint item.
	ResolveProvider *bool `json:"resolveProvider,omitzero"`

	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Inlay hint options used during static or dynamic registration.

Since: 3.17.0

func (*InlayHintRegistrationOptions) UnmarshalJSONFrom

func (s *InlayHintRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlayHintResolveResponse

type InlayHintResolveResponse = *InlayHint

Response type for `inlayHint/resolve`

type InlayHintResponse

type InlayHintResponse = InlayHintsOrNull

Response type for `textDocument/inlayHint`

type InlayHintWorkspaceClientCapabilities

type InlayHintWorkspaceClientCapabilities struct {
	// Whether the client implementation supports a refresh request sent from
	// the server to the client.
	//
	// Note that this event is global and will force the client to refresh all
	// inlay hints currently shown. It should be used with absolute care and
	// is useful for situation where a server for example detects a project wide
	// change that requires such a calculation.
	RefreshSupport *bool `json:"refreshSupport,omitzero"`
}

Client workspace capabilities specific to inlay hints.

Since: 3.17.0

type InlayHintsOrNull

type InlayHintsOrNull struct {
	InlayHints *[]*InlayHint
}

func (*InlayHintsOrNull) MarshalJSONTo

func (o *InlayHintsOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*InlayHintsOrNull) UnmarshalJSONFrom

func (o *InlayHintsOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineCompletionClientCapabilities

type InlineCompletionClientCapabilities struct {
	// Whether implementation supports dynamic registration for inline completion providers.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Client capabilities specific to inline completions.

Since: 3.18.0

Proposed.

type InlineCompletionContext

type InlineCompletionContext struct {
	// Describes how the inline completion was triggered.
	TriggerKind InlineCompletionTriggerKind `json:"triggerKind"`

	// Provides information about the currently selected item in the autocomplete widget if it is visible.
	SelectedCompletionInfo *SelectedCompletionInfo `json:"selectedCompletionInfo,omitzero"`
}

Provides information about the context in which an inline completion was requested.

Since: 3.18.0

Proposed.

func (*InlineCompletionContext) UnmarshalJSONFrom

func (s *InlineCompletionContext) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineCompletionItem

type InlineCompletionItem struct {
	// The text to replace the range with. Must be set.
	InsertText StringOrStringValue `json:"insertText"`

	// A text that is used to decide if this inline completion should be shown. When `falsy` the InlineCompletionItem.insertText is used.
	FilterText *string `json:"filterText,omitzero"`

	// The range to replace. Must begin and end on the same line.
	Range *Range `json:"range,omitzero"`

	// An optional Command that is executed *after* inserting this completion.
	Command *Command `json:"command,omitzero"`
}

An inline completion item represents a text snippet that is proposed inline to complete text that is being typed.

Since: 3.18.0

Proposed.

func (*InlineCompletionItem) UnmarshalJSONFrom

func (s *InlineCompletionItem) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineCompletionList

type InlineCompletionList struct {
	// The inline completion items
	Items []*InlineCompletionItem `json:"items"`
}

Represents a collection of items to be presented in the editor.

Since: 3.18.0

Proposed.

func (*InlineCompletionList) UnmarshalJSONFrom

func (s *InlineCompletionList) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineCompletionListOrItemsOrNull

type InlineCompletionListOrItemsOrNull struct {
	List  *InlineCompletionList
	Items *[]*InlineCompletionItem
}

func (*InlineCompletionListOrItemsOrNull) MarshalJSONTo

func (*InlineCompletionListOrItemsOrNull) UnmarshalJSONFrom

func (o *InlineCompletionListOrItemsOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineCompletionOptions

type InlineCompletionOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Inline completion options used during static registration.

Since: 3.18.0

Proposed.

type InlineCompletionParams

type InlineCompletionParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// Additional information about the context in which inline completions were
	// requested.
	Context *InlineCompletionContext `json:"context"`
}

A parameter literal used in inline completion requests.

Since: 3.18.0

Proposed.

func (*InlineCompletionParams) TextDocumentURI

func (s *InlineCompletionParams) TextDocumentURI() DocumentUri

func (*InlineCompletionParams) UnmarshalJSONFrom

func (s *InlineCompletionParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineCompletionRegistrationOptions

type InlineCompletionRegistrationOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Inline completion options used during static or dynamic registration.

Since: 3.18.0

Proposed.

func (*InlineCompletionRegistrationOptions) UnmarshalJSONFrom

func (s *InlineCompletionRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineCompletionResponse

type InlineCompletionResponse = InlineCompletionListOrItemsOrNull

Response type for `textDocument/inlineCompletion`

type InlineCompletionTriggerKind

type InlineCompletionTriggerKind uint32

Describes how an provider was triggered.

Since: 3.18.0

Proposed.

const (
	// Completion was triggered explicitly by a user gesture.
	InlineCompletionTriggerKindInvoked InlineCompletionTriggerKind = 1
	// Completion was triggered automatically while editing.
	InlineCompletionTriggerKindAutomatic InlineCompletionTriggerKind = 2
)

type InlineValueClientCapabilities

type InlineValueClientCapabilities struct {
	// Whether implementation supports dynamic registration for inline value providers.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Client capabilities specific to inline values.

Since: 3.17.0

type InlineValueContext

type InlineValueContext struct {
	// The stack frame (as a DAP Id) where the execution has stopped.
	FrameId int32 `json:"frameId"`

	// The document range where execution has stopped.
	// Typically the end position of the range denotes the line where the inline values are shown.
	StoppedLocation Range `json:"stoppedLocation"`
}

Since: 3.17.0

func (*InlineValueContext) UnmarshalJSONFrom

func (s *InlineValueContext) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineValueEvaluatableExpression

type InlineValueEvaluatableExpression struct {
	// The document range for which the inline value applies.
	// The range is used to extract the evaluatable expression from the underlying document.
	Range Range `json:"range"`

	// If specified the expression overrides the extracted expression.
	Expression *string `json:"expression,omitzero"`
}

Provide an inline value through an expression evaluation. If only a range is specified, the expression will be extracted from the underlying document. An optional expression can be used to override the extracted expression.

Since: 3.17.0

func (*InlineValueEvaluatableExpression) UnmarshalJSONFrom

func (s *InlineValueEvaluatableExpression) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineValueOptions

type InlineValueOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Inline value options used during static registration.

Since: 3.17.0

type InlineValueParams

type InlineValueParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The document range for which inline values should be computed.
	Range Range `json:"range"`

	// Additional information about the context in which inline values were
	// requested.
	Context *InlineValueContext `json:"context"`
}

A parameter literal used in inline value requests.

Since: 3.17.0

func (*InlineValueParams) TextDocumentURI

func (s *InlineValueParams) TextDocumentURI() DocumentUri

func (*InlineValueParams) UnmarshalJSONFrom

func (s *InlineValueParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineValueRefreshResponse

type InlineValueRefreshResponse = Null

Response type for `workspace/inlineValue/refresh`

type InlineValueRegistrationOptions

type InlineValueRegistrationOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Inline value options used during static or dynamic registration.

Since: 3.17.0

func (*InlineValueRegistrationOptions) UnmarshalJSONFrom

func (s *InlineValueRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineValueResponse

type InlineValueResponse = InlineValuesOrNull

Response type for `textDocument/inlineValue`

type InlineValueText

type InlineValueText struct {
	// The document range for which the inline value applies.
	Range Range `json:"range"`

	// The text of the inline value.
	Text string `json:"text"`
}

Provide inline value as text.

Since: 3.17.0

func (*InlineValueText) UnmarshalJSONFrom

func (s *InlineValueText) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineValueTextOrVariableLookupOrEvaluatableExpression

type InlineValueTextOrVariableLookupOrEvaluatableExpression struct {
	Text                  *InlineValueText
	VariableLookup        *InlineValueVariableLookup
	EvaluatableExpression *InlineValueEvaluatableExpression
}

func (*InlineValueTextOrVariableLookupOrEvaluatableExpression) MarshalJSONTo

func (*InlineValueTextOrVariableLookupOrEvaluatableExpression) UnmarshalJSONFrom

type InlineValueVariableLookup

type InlineValueVariableLookup struct {
	// The document range for which the inline value applies.
	// The range is used to extract the variable name from the underlying document.
	Range Range `json:"range"`

	// If specified the name of the variable to look up.
	VariableName *string `json:"variableName,omitzero"`

	// How to perform the lookup.
	CaseSensitiveLookup bool `json:"caseSensitiveLookup"`
}

Provide inline value through a variable lookup. If only a range is specified, the variable name will be extracted from the underlying document. An optional variable name can be used to override the extracted name.

Since: 3.17.0

func (*InlineValueVariableLookup) UnmarshalJSONFrom

func (s *InlineValueVariableLookup) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InlineValueWorkspaceClientCapabilities

type InlineValueWorkspaceClientCapabilities struct {
	// Whether the client implementation supports a refresh request sent from the
	// server to the client.
	//
	// Note that this event is global and will force the client to refresh all
	// inline values currently shown. It should be used with absolute care and is
	// useful for situation where a server for example detects a project wide
	// change that requires such a calculation.
	RefreshSupport *bool `json:"refreshSupport,omitzero"`
}

Client workspace capabilities specific to inline values.

Since: 3.17.0

type InlineValuesOrNull

type InlineValuesOrNull struct {
	InlineValues *[]InlineValueTextOrVariableLookupOrEvaluatableExpression
}

func (*InlineValuesOrNull) MarshalJSONTo

func (o *InlineValuesOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*InlineValuesOrNull) UnmarshalJSONFrom

func (o *InlineValuesOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InsertReplaceEdit

type InsertReplaceEdit struct {
	// The string to be inserted.
	NewText string `json:"newText"`

	// The range if the insert is requested
	Insert Range `json:"insert"`

	// The range if the replace is requested.
	Replace Range `json:"replace"`
}

A special text edit to provide an insert and a replace operation.

Since: 3.16.0

func (*InsertReplaceEdit) UnmarshalJSONFrom

func (s *InsertReplaceEdit) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type InsertTextFormat

type InsertTextFormat uint32

Defines whether the insert text in a completion item should be interpreted as plain text or a snippet.

const (
	// The primary text to be inserted is treated as a plain string.
	InsertTextFormatPlainText InsertTextFormat = 1
	// The primary text to be inserted is treated as a snippet.
	//
	// A snippet can define tab stops and placeholders with `$1`, `$2`
	// and `${3:foo}`. `$0` defines the final tab stop, it defaults to
	// the end of the snippet. Placeholders with equal identifiers are linked,
	// that is typing in one will update others too.
	//
	// See also: https://microsoft.github.io/language-server-protocol/specifications/specification-current/#snippet_syntax
	InsertTextFormatSnippet InsertTextFormat = 2
)

type InsertTextMode

type InsertTextMode uint32

How whitespace and indentation is handled during completion item insertion.

Since: 3.16.0

const (
	// The insertion or replace strings is taken as it is. If the
	// value is multi line the lines below the cursor will be
	// inserted using the indentation defined in the string value.
	// The client will not apply any kind of adjustments to the
	// string.
	InsertTextModeasIs InsertTextMode = 1
	// The editor adjusts leading whitespace of new lines so that
	// they match the indentation up to the cursor of the line for
	// which the item is accepted.
	//
	// Consider a line like this: <2tabs><cursor><3tabs>foo. Accepting a
	// multi line completion item is indented using 2 tabs and all
	// following lines inserted will be indented using 2 tabs as well.
	InsertTextModeadjustIndentation InsertTextMode = 2
)

type IntegerOrNull

type IntegerOrNull struct {
	Integer *int32
}

func (*IntegerOrNull) MarshalJSONTo

func (o *IntegerOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*IntegerOrNull) UnmarshalJSONFrom

func (o *IntegerOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type IntegerOrString

type IntegerOrString struct {
	Integer *int32
	String  *string
}

func (*IntegerOrString) MarshalJSONTo

func (o *IntegerOrString) MarshalJSONTo(enc *jsontext.Encoder) error

func (*IntegerOrString) UnmarshalJSONFrom

func (o *IntegerOrString) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type JSONRPCVersion

type JSONRPCVersion struct{}

func (JSONRPCVersion) MarshalJSON

func (JSONRPCVersion) MarshalJSON() ([]byte, error)

func (*JSONRPCVersion) UnmarshalJSON

func (*JSONRPCVersion) UnmarshalJSON(data []byte) error

type LSPAnyOrNull

type LSPAnyOrNull struct {
	LSPAny *any
}

func (*LSPAnyOrNull) MarshalJSONTo

func (o *LSPAnyOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*LSPAnyOrNull) UnmarshalJSONFrom

func (o *LSPAnyOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type LSPErrorCodes

type LSPErrorCodes int32
const (
	// A request failed but it was syntactically correct, e.g the
	// method name was known and the parameters were valid. The error
	// message should contain human readable information about why
	// the request failed.
	//
	// Since: 3.17.0
	LSPErrorCodesRequestFailed LSPErrorCodes = -32803
	// The server cancelled the request. This error code should
	// only be used for requests that explicitly support being
	// server cancellable.
	//
	// Since: 3.17.0
	LSPErrorCodesServerCancelled LSPErrorCodes = -32802
	// The server detected that the content of a document got
	// modified outside normal conditions. A server should
	// NOT send this error code if it detects a content change
	// in it unprocessed messages. The result even computed
	// on an older state might still be useful for the client.
	//
	// If a client decides that a result is not of any use anymore
	// the client should cancel the request.
	LSPErrorCodesContentModified LSPErrorCodes = -32801
	// The client has canceled a request and a server has detected
	// the cancel.
	LSPErrorCodesRequestCancelled LSPErrorCodes = -32800
)

type LanguageKind

type LanguageKind string

Predefined Language kinds

Since: 3.18.0

const (
	LanguageKindABAP         LanguageKind = "abap"
	LanguageKindWindowsBat   LanguageKind = "bat"
	LanguageKindBibTeX       LanguageKind = "bibtex"
	LanguageKindClojure      LanguageKind = "clojure"
	LanguageKindCoffeescript LanguageKind = "coffeescript"
	LanguageKindC            LanguageKind = "c"
	LanguageKindCPP          LanguageKind = "cpp"
	LanguageKindCSharp       LanguageKind = "csharp"
	LanguageKindCSS          LanguageKind = "css"
	// Since: 3.18.0
	//
	// Proposed.
	LanguageKindD LanguageKind = "d"
	// Since: 3.18.0
	//
	// Proposed.
	LanguageKindDelphi          LanguageKind = "pascal"
	LanguageKindDiff            LanguageKind = "diff"
	LanguageKindDart            LanguageKind = "dart"
	LanguageKindDockerfile      LanguageKind = "dockerfile"
	LanguageKindElixir          LanguageKind = "elixir"
	LanguageKindErlang          LanguageKind = "erlang"
	LanguageKindFSharp          LanguageKind = "fsharp"
	LanguageKindGitCommit       LanguageKind = "git-commit"
	LanguageKindGitRebase       LanguageKind = "rebase"
	LanguageKindGo              LanguageKind = "go"
	LanguageKindGroovy          LanguageKind = "groovy"
	LanguageKindHandlebars      LanguageKind = "handlebars"
	LanguageKindHaskell         LanguageKind = "haskell"
	LanguageKindHTML            LanguageKind = "html"
	LanguageKindIni             LanguageKind = "ini"
	LanguageKindJava            LanguageKind = "java"
	LanguageKindJavaScript      LanguageKind = "javascript"
	LanguageKindJavaScriptReact LanguageKind = "javascriptreact"
	LanguageKindJSON            LanguageKind = "json"
	LanguageKindLaTeX           LanguageKind = "latex"
	LanguageKindLess            LanguageKind = "less"
	LanguageKindLua             LanguageKind = "lua"
	LanguageKindMakefile        LanguageKind = "makefile"
	LanguageKindMarkdown        LanguageKind = "markdown"
	LanguageKindObjectiveC      LanguageKind = "objective-c"
	LanguageKindObjectiveCPP    LanguageKind = "objective-cpp"
	// Since: 3.18.0
	//
	// Proposed.
	LanguageKindPascal          LanguageKind = "pascal"
	LanguageKindPerl            LanguageKind = "perl"
	LanguageKindPerl6           LanguageKind = "perl6"
	LanguageKindPHP             LanguageKind = "php"
	LanguageKindPowershell      LanguageKind = "powershell"
	LanguageKindPug             LanguageKind = "jade"
	LanguageKindPython          LanguageKind = "python"
	LanguageKindR               LanguageKind = "r"
	LanguageKindRazor           LanguageKind = "razor"
	LanguageKindRuby            LanguageKind = "ruby"
	LanguageKindRust            LanguageKind = "rust"
	LanguageKindSCSS            LanguageKind = "scss"
	LanguageKindSASS            LanguageKind = "sass"
	LanguageKindScala           LanguageKind = "scala"
	LanguageKindShaderLab       LanguageKind = "shaderlab"
	LanguageKindShellScript     LanguageKind = "shellscript"
	LanguageKindSQL             LanguageKind = "sql"
	LanguageKindSwift           LanguageKind = "swift"
	LanguageKindTypeScript      LanguageKind = "typescript"
	LanguageKindTypeScriptReact LanguageKind = "typescriptreact"
	LanguageKindTeX             LanguageKind = "tex"
	LanguageKindVisualBasic     LanguageKind = "vb"
	LanguageKindXML             LanguageKind = "xml"
	LanguageKindXSL             LanguageKind = "xsl"
	LanguageKindYAML            LanguageKind = "yaml"
)

type LinkedEditingRangeClientCapabilities

type LinkedEditingRangeClientCapabilities struct {
	// Whether implementation supports dynamic registration. If this is set to `true`
	// the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
	// return value for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Client capabilities for the linked editing range request.

Since: 3.16.0

type LinkedEditingRangeOptions

type LinkedEditingRangeOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

type LinkedEditingRangeParams

type LinkedEditingRangeParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`
}

func (*LinkedEditingRangeParams) TextDocumentURI

func (s *LinkedEditingRangeParams) TextDocumentURI() DocumentUri

func (*LinkedEditingRangeParams) UnmarshalJSONFrom

func (s *LinkedEditingRangeParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type LinkedEditingRangeRegistrationOptions

type LinkedEditingRangeRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

func (*LinkedEditingRangeRegistrationOptions) UnmarshalJSONFrom

func (s *LinkedEditingRangeRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type LinkedEditingRangeResponse

type LinkedEditingRangeResponse = LinkedEditingRangesOrNull

Response type for `textDocument/linkedEditingRange`

type LinkedEditingRanges

type LinkedEditingRanges struct {
	// A list of ranges that can be edited together. The ranges must have
	// identical length and contain identical text content. The ranges cannot overlap.
	Ranges []Range `json:"ranges"`

	// An optional word pattern (regular expression) that describes valid contents for
	// the given ranges. If no pattern is provided, the client configuration's word
	// pattern will be used.
	WordPattern *string `json:"wordPattern,omitzero"`
}

The result of a linked editing range request.

Since: 3.16.0

func (*LinkedEditingRanges) UnmarshalJSONFrom

func (s *LinkedEditingRanges) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type LinkedEditingRangesOrNull

type LinkedEditingRangesOrNull struct {
	LinkedEditingRanges *LinkedEditingRanges
}

func (*LinkedEditingRangesOrNull) MarshalJSONTo

func (o *LinkedEditingRangesOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*LinkedEditingRangesOrNull) UnmarshalJSONFrom

func (o *LinkedEditingRangesOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type Location

type Location struct {
	Uri DocumentUri `json:"uri"`

	Range Range `json:"range"`
}

Represents a location inside a resource, such as a line inside a text file.

func (*Location) UnmarshalJSONFrom

func (s *Location) UnmarshalJSONFrom(dec *jsontext.Decoder) error
type LocationLink struct {
	// Span of the origin of this link.
	//
	// Used as the underlined span for mouse interaction. Defaults to the word range at
	// the definition position.
	OriginSelectionRange *Range `json:"originSelectionRange,omitzero"`

	// The target resource identifier of this link.
	TargetUri DocumentUri `json:"targetUri"`

	// The full target range of this link. If the target for example is a symbol then target range is the
	// range enclosing this symbol not including leading/trailing whitespace but everything else
	// like comments. This information is typically used to highlight the range in the editor.
	TargetRange Range `json:"targetRange"`

	// The range that should be selected and revealed when this link is being followed, e.g the name of a function.
	// Must be contained by the `targetRange`. See also `DocumentSymbol#range`
	TargetSelectionRange Range `json:"targetSelectionRange"`
}

Represents the connection of two locations. Provides additional metadata over normal locations, including an origin range.

func (*LocationLink) UnmarshalJSONFrom

func (s *LocationLink) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type LocationOrLocationUriOnly

type LocationOrLocationUriOnly struct {
	Location        *Location
	LocationUriOnly *LocationUriOnly
}

func (*LocationOrLocationUriOnly) MarshalJSONTo

func (o *LocationOrLocationUriOnly) MarshalJSONTo(enc *jsontext.Encoder) error

func (*LocationOrLocationUriOnly) UnmarshalJSONFrom

func (o *LocationOrLocationUriOnly) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type LocationOrLocationsOrDeclarationLinksOrNull

type LocationOrLocationsOrDeclarationLinksOrNull struct {
	Location         *Location
	Locations        *[]Location
	DeclarationLinks *[]*LocationLink
}

func (*LocationOrLocationsOrDeclarationLinksOrNull) MarshalJSONTo

func (*LocationOrLocationsOrDeclarationLinksOrNull) UnmarshalJSONFrom

type LocationOrLocationsOrDefinitionLinksOrNull

type LocationOrLocationsOrDefinitionLinksOrNull struct {
	Location        *Location
	Locations       *[]Location
	DefinitionLinks *[]*LocationLink
}

func (*LocationOrLocationsOrDefinitionLinksOrNull) MarshalJSONTo

func (*LocationOrLocationsOrDefinitionLinksOrNull) UnmarshalJSONFrom

type LocationUriOnly

type LocationUriOnly struct {
	Uri DocumentUri `json:"uri"`
}

Location with only uri and does not include range.

Since: 3.18.0

func (*LocationUriOnly) UnmarshalJSONFrom

func (s *LocationUriOnly) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type LocationsOrNull

type LocationsOrNull struct {
	Locations *[]Location
}

func (*LocationsOrNull) MarshalJSONTo

func (o *LocationsOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*LocationsOrNull) UnmarshalJSONFrom

func (o *LocationsOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type LogMessageParams

type LogMessageParams struct {
	// The message type. See MessageType
	Type MessageType `json:"type"`

	// The actual message.
	Message string `json:"message"`
}

The log message parameters.

func (*LogMessageParams) UnmarshalJSONFrom

func (s *LogMessageParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type LogTraceParams

type LogTraceParams struct {
	Message string `json:"message"`

	Verbose *string `json:"verbose,omitzero"`
}

func (*LogTraceParams) UnmarshalJSONFrom

func (s *LogTraceParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type MarkdownClientCapabilities

type MarkdownClientCapabilities struct {
	// The name of the parser.
	Parser string `json:"parser"`

	// The version of the parser.
	Version *string `json:"version,omitzero"`

	// A list of HTML tags that the client allows / supports in
	// Markdown.
	//
	// Since: 3.17.0
	AllowedTags *[]string `json:"allowedTags,omitzero"`
}

Client capabilities specific to the used markdown parser.

Since: 3.16.0

func (*MarkdownClientCapabilities) UnmarshalJSONFrom

func (s *MarkdownClientCapabilities) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type MarkedStringWithLanguage deprecated

type MarkedStringWithLanguage struct {
	Language string `json:"language"`

	Value string `json:"value"`
}

Since: 3.18.0

Deprecated: use MarkupContent instead.

func (*MarkedStringWithLanguage) UnmarshalJSONFrom

func (s *MarkedStringWithLanguage) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type MarkupContent

type MarkupContent struct {
	// The type of the Markup
	Kind MarkupKind `json:"kind"`

	// The content itself
	Value string `json:"value"`
}

A `MarkupContent` literal represents a string value which content is interpreted base on its kind flag. Currently the protocol supports `plaintext` and `markdown` as markup kinds.

If the kind is `markdown` then the value can contain fenced code blocks like in GitHub issues. See https://help.github.com/articles/creating-and-highlighting-code-blocks/#syntax-highlighting

Here is an example how such a string can be constructed using JavaScript / TypeScript: ```ts

let markdown: MarkdownContent = {
 kind: MarkupKind.Markdown,
 value: [
   '# Header',
   'Some text',
   '```typescript',
   'someCode();',
   '```'
 ].join('\n')
};

```

*Please Note* that clients might sanitize the return markdown. A client could decide to remove HTML from the markdown to avoid script execution.

func (*MarkupContent) UnmarshalJSONFrom

func (s *MarkupContent) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type MarkupContentOrStringOrMarkedStringWithLanguageOrMarkedStrings

type MarkupContentOrStringOrMarkedStringWithLanguageOrMarkedStrings struct {
	MarkupContent            *MarkupContent
	String                   *string
	MarkedStringWithLanguage *MarkedStringWithLanguage
	MarkedStrings            *[]StringOrMarkedStringWithLanguage
}

func (*MarkupContentOrStringOrMarkedStringWithLanguageOrMarkedStrings) MarshalJSONTo

func (*MarkupContentOrStringOrMarkedStringWithLanguageOrMarkedStrings) UnmarshalJSONFrom

type MarkupKind

type MarkupKind string

Describes the content type that a client supports in various result literals like `Hover`, `ParameterInfo` or `CompletionItem`.

Please note that `MarkupKinds` must not start with a `$`. This kinds are reserved for internal usage.

const (
	// Plain text is supported as a content format
	MarkupKindPlainText MarkupKind = "plaintext"
	// Markdown is supported as a content format
	MarkupKindMarkdown MarkupKind = "markdown"
)

type Message

type Message struct {
	Kind MessageKind
	// contains filtered or unexported fields
}

func (*Message) AsRequest

func (m *Message) AsRequest() *RequestMessage

func (*Message) AsResponse

func (m *Message) AsResponse() *ResponseMessage

func (*Message) MarshalJSON

func (m *Message) MarshalJSON() ([]byte, error)

func (*Message) UnmarshalJSON

func (m *Message) UnmarshalJSON(data []byte) error

type MessageActionItem

type MessageActionItem struct {
	// A short title like 'Retry', 'Open Log' etc.
	Title string `json:"title"`
}

func (*MessageActionItem) UnmarshalJSONFrom

func (s *MessageActionItem) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type MessageActionItemOrNull

type MessageActionItemOrNull struct {
	MessageActionItem *MessageActionItem
}

func (*MessageActionItemOrNull) MarshalJSONTo

func (o *MessageActionItemOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*MessageActionItemOrNull) UnmarshalJSONFrom

func (o *MessageActionItemOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type MessageKind

type MessageKind int
const (
	MessageKindNotification MessageKind = iota
	MessageKindRequest
	MessageKindResponse
)

type MessageType

type MessageType uint32

The message type

const (
	// An error message.
	MessageTypeError MessageType = 1
	// A warning message.
	MessageTypeWarning MessageType = 2
	// An information message.
	MessageTypeInfo MessageType = 3
	// A log message.
	MessageTypeLog MessageType = 4
	// A debug message.
	//
	// Since: 3.18.0
	//
	// Proposed.
	MessageTypeDebug MessageType = 5
)

type Method

type Method string
const (
	// A request to resolve the implementation locations of a symbol at a given text
	// document position. The request's parameter is of type TextDocumentPositionParams
	// the response is of type Definition or a Thenable that resolves to such.
	MethodTextDocumentImplementation Method = "textDocument/implementation"
	// A request to resolve the type definition locations of a symbol at a given text
	// document position. The request's parameter is of type TextDocumentPositionParams
	// the response is of type Definition or a Thenable that resolves to such.
	MethodTextDocumentTypeDefinition Method = "textDocument/typeDefinition"
	// The `workspace/workspaceFolders` is sent from the server to the client to fetch the open workspace folders.
	MethodWorkspaceWorkspaceFolders Method = "workspace/workspaceFolders"
	// The 'workspace/configuration' request is sent from the server to the client to fetch a certain
	// configuration setting.
	//
	// This pull model replaces the old push model were the client signaled configuration change via an
	// event. If the server still needs to react to configuration changes (since the server caches the
	// result of `workspace/configuration` requests) the server should register for an empty configuration
	// change event and empty the cache if such an event is received.
	MethodWorkspaceConfiguration Method = "workspace/configuration"
	// A request to list all color symbols found in a given text document. The request's
	// parameter is of type DocumentColorParams the
	// response is of type ColorInformation[] or a Thenable
	// that resolves to such.
	MethodTextDocumentDocumentColor Method = "textDocument/documentColor"
	// A request to list all presentation for a color. The request's
	// parameter is of type ColorPresentationParams the
	// response is of type ColorInformation[] or a Thenable
	// that resolves to such.
	MethodTextDocumentColorPresentation Method = "textDocument/colorPresentation"
	// A request to provide folding ranges in a document. The request's
	// parameter is of type FoldingRangeParams, the
	// response is of type FoldingRangeList or a Thenable
	// that resolves to such.
	MethodTextDocumentFoldingRange Method = "textDocument/foldingRange"
	// Since: 3.18.0
	//
	// Proposed.
	MethodWorkspaceFoldingRangeRefresh Method = "workspace/foldingRange/refresh"
	// A request to resolve the type definition locations of a symbol at a given text
	// document position. The request's parameter is of type TextDocumentPositionParams
	// the response is of type Declaration or a typed array of DeclarationLink
	// or a Thenable that resolves to such.
	MethodTextDocumentDeclaration Method = "textDocument/declaration"
	// A request to provide selection ranges in a document. The request's
	// parameter is of type SelectionRangeParams, the
	// response is of type SelectionRange[] or a Thenable
	// that resolves to such.
	MethodTextDocumentSelectionRange Method = "textDocument/selectionRange"
	// The `window/workDoneProgress/create` request is sent from the server to the client to initiate progress
	// reporting from the server.
	MethodWindowWorkDoneProgressCreate Method = "window/workDoneProgress/create"
	// A request to result a `CallHierarchyItem` in a document at a given position.
	// Can be used as an input to an incoming or outgoing call hierarchy.
	//
	// Since: 3.16.0
	MethodTextDocumentPrepareCallHierarchy Method = "textDocument/prepareCallHierarchy"
	// A request to resolve the incoming calls for a given `CallHierarchyItem`.
	//
	// Since: 3.16.0
	MethodCallHierarchyIncomingCalls Method = "callHierarchy/incomingCalls"
	// A request to resolve the outgoing calls for a given `CallHierarchyItem`.
	//
	// Since: 3.16.0
	MethodCallHierarchyOutgoingCalls Method = "callHierarchy/outgoingCalls"
	// Since: 3.16.0
	MethodTextDocumentSemanticTokensFull Method = "textDocument/semanticTokens/full"
	// Since: 3.16.0
	MethodTextDocumentSemanticTokensFullDelta Method = "textDocument/semanticTokens/full/delta"
	// Since: 3.16.0
	MethodTextDocumentSemanticTokensRange Method = "textDocument/semanticTokens/range"
	// Since: 3.16.0
	MethodWorkspaceSemanticTokensRefresh Method = "workspace/semanticTokens/refresh"
	// A request to show a document. This request might open an
	// external program depending on the value of the URI to open.
	// For example a request to open `https://code.visualstudio.com/`
	// will very likely open the URI in a WEB browser.
	//
	// Since: 3.16.0
	MethodWindowShowDocument Method = "window/showDocument"
	// A request to provide ranges that can be edited together.
	//
	// Since: 3.16.0
	MethodTextDocumentLinkedEditingRange Method = "textDocument/linkedEditingRange"
	// The will create files request is sent from the client to the server before files are actually
	// created as long as the creation is triggered from within the client.
	//
	// The request can return a `WorkspaceEdit` which will be applied to workspace before the
	// files are created. Hence the `WorkspaceEdit` can not manipulate the content of the file
	// to be created.
	//
	// Since: 3.16.0
	MethodWorkspaceWillCreateFiles Method = "workspace/willCreateFiles"
	// The will rename files request is sent from the client to the server before files are actually
	// renamed as long as the rename is triggered from within the client.
	//
	// Since: 3.16.0
	MethodWorkspaceWillRenameFiles Method = "workspace/willRenameFiles"
	// The did delete files notification is sent from the client to the server when
	// files were deleted from within the client.
	//
	// Since: 3.16.0
	MethodWorkspaceWillDeleteFiles Method = "workspace/willDeleteFiles"
	// A request to get the moniker of a symbol at a given text document position.
	// The request parameter is of type TextDocumentPositionParams.
	// The response is of type Moniker[] or `null`.
	MethodTextDocumentMoniker Method = "textDocument/moniker"
	// A request to result a `TypeHierarchyItem` in a document at a given position.
	// Can be used as an input to a subtypes or supertypes type hierarchy.
	//
	// Since: 3.17.0
	MethodTextDocumentPrepareTypeHierarchy Method = "textDocument/prepareTypeHierarchy"
	// A request to resolve the supertypes for a given `TypeHierarchyItem`.
	//
	// Since: 3.17.0
	MethodTypeHierarchySupertypes Method = "typeHierarchy/supertypes"
	// A request to resolve the subtypes for a given `TypeHierarchyItem`.
	//
	// Since: 3.17.0
	MethodTypeHierarchySubtypes Method = "typeHierarchy/subtypes"
	// A request to provide inline values in a document. The request's parameter is of
	// type InlineValueParams, the response is of type
	// InlineValue[] or a Thenable that resolves to such.
	//
	// Since: 3.17.0
	MethodTextDocumentInlineValue Method = "textDocument/inlineValue"
	// Since: 3.17.0
	MethodWorkspaceInlineValueRefresh Method = "workspace/inlineValue/refresh"
	// A request to provide inlay hints in a document. The request's parameter is of
	// type InlayHintsParams, the response is of type
	// InlayHint[] or a Thenable that resolves to such.
	//
	// Since: 3.17.0
	MethodTextDocumentInlayHint Method = "textDocument/inlayHint"
	// A request to resolve additional properties for an inlay hint.
	// The request's parameter is of type InlayHint, the response is
	// of type InlayHint or a Thenable that resolves to such.
	//
	// Since: 3.17.0
	MethodInlayHintResolve Method = "inlayHint/resolve"
	// Since: 3.17.0
	MethodWorkspaceInlayHintRefresh Method = "workspace/inlayHint/refresh"
	// The document diagnostic request definition.
	//
	// Since: 3.17.0
	MethodTextDocumentDiagnostic Method = "textDocument/diagnostic"
	// The workspace diagnostic request definition.
	//
	// Since: 3.17.0
	MethodWorkspaceDiagnostic Method = "workspace/diagnostic"
	// The diagnostic refresh request definition.
	//
	// Since: 3.17.0
	MethodWorkspaceDiagnosticRefresh Method = "workspace/diagnostic/refresh"
	// A request to provide inline completions in a document. The request's parameter is of
	// type InlineCompletionParams, the response is of type
	// InlineCompletion[] or a Thenable that resolves to such.
	//
	// Since: 3.18.0
	//
	// Proposed.
	MethodTextDocumentInlineCompletion Method = "textDocument/inlineCompletion"
	// The `workspace/textDocumentContent` request is sent from the client to the
	// server to request the content of a text document.
	//
	// Since: 3.18.0
	//
	// Proposed.
	MethodWorkspaceTextDocumentContent Method = "workspace/textDocumentContent"
	// The `workspace/textDocumentContent` request is sent from the server to the client to refresh
	// the content of a specific text document.
	//
	// Since: 3.18.0
	//
	// Proposed.
	MethodWorkspaceTextDocumentContentRefresh Method = "workspace/textDocumentContent/refresh"
	// The `client/registerCapability` request is sent from the server to the client to register a new capability
	// handler on the client side.
	MethodClientRegisterCapability Method = "client/registerCapability"
	// The `client/unregisterCapability` request is sent from the server to the client to unregister a previously registered capability
	// handler on the client side.
	MethodClientUnregisterCapability Method = "client/unregisterCapability"
	// The initialize request is sent from the client to the server.
	// It is sent once as the request after starting up the server.
	// The requests parameter is of type InitializeParams
	// the response if of type InitializeResult of a Thenable that
	// resolves to such.
	MethodInitialize Method = "initialize"
	// A shutdown request is sent from the client to the server.
	// It is sent once when the client decides to shutdown the
	// server. The only notification that is sent after a shutdown request
	// is the exit event.
	MethodShutdown Method = "shutdown"
	// The show message request is sent from the server to the client to show a message
	// and a set of options actions to the user.
	MethodWindowShowMessageRequest Method = "window/showMessageRequest"
	// A document will save request is sent from the client to the server before
	// the document is actually saved. The request can return an array of TextEdits
	// which will be applied to the text document before it is saved. Please note that
	// clients might drop results if computing the text edits took too long or if a
	// server constantly fails on this request. This is done to keep the save fast and
	// reliable.
	MethodTextDocumentWillSaveWaitUntil Method = "textDocument/willSaveWaitUntil"
	// Request to request completion at a given text document position. The request's
	// parameter is of type TextDocumentPosition the response
	// is of type CompletionItem[] or CompletionList
	// or a Thenable that resolves to such.
	//
	// The request can delay the computation of the `detail`
	// and `documentation` properties to the `completionItem/resolve`
	// request. However, properties that are needed for the initial sorting and filtering, like `sortText`,
	// `filterText`, `insertText`, and `textEdit`, must not be changed during resolve.
	MethodTextDocumentCompletion Method = "textDocument/completion"
	// Request to resolve additional information for a given completion item.The request's
	// parameter is of type CompletionItem the response
	// is of type CompletionItem or a Thenable that resolves to such.
	MethodCompletionItemResolve Method = "completionItem/resolve"
	// Request to request hover information at a given text document position. The request's
	// parameter is of type TextDocumentPosition the response is of
	// type Hover or a Thenable that resolves to such.
	MethodTextDocumentHover         Method = "textDocument/hover"
	MethodTextDocumentSignatureHelp Method = "textDocument/signatureHelp"
	// A request to resolve the definition location of a symbol at a given text
	// document position. The request's parameter is of type TextDocumentPosition
	// the response is of either type Definition or a typed array of
	// DefinitionLink or a Thenable that resolves to such.
	MethodTextDocumentDefinition Method = "textDocument/definition"
	// A request to resolve project-wide references for the symbol denoted
	// by the given text document position. The request's parameter is of
	// type ReferenceParams the response is of type
	// Location[] or a Thenable that resolves to such.
	MethodTextDocumentReferences Method = "textDocument/references"
	// Request to resolve a DocumentHighlight for a given
	// text document position. The request's parameter is of type TextDocumentPosition
	// the request response is an array of type DocumentHighlight
	// or a Thenable that resolves to such.
	MethodTextDocumentDocumentHighlight Method = "textDocument/documentHighlight"
	// A request to list all symbols found in a given text document. The request's
	// parameter is of type TextDocumentIdentifier the
	// response is of type SymbolInformation[] or a Thenable
	// that resolves to such.
	MethodTextDocumentDocumentSymbol Method = "textDocument/documentSymbol"
	// A request to provide commands for the given text document and range.
	MethodTextDocumentCodeAction Method = "textDocument/codeAction"
	// Request to resolve additional information for a given code action.The request's
	// parameter is of type CodeAction the response
	// is of type CodeAction or a Thenable that resolves to such.
	MethodCodeActionResolve Method = "codeAction/resolve"
	// A request to list project-wide symbols matching the query string given
	// by the WorkspaceSymbolParams. The response is
	// of type SymbolInformation[] or a Thenable that
	// resolves to such.
	//
	// Since: 3.17.0 - support for WorkspaceSymbol in the returned data. Clients
	//  need to advertise support for WorkspaceSymbols via the client capability
	//  `workspace.symbol.resolveSupport`.
	MethodWorkspaceSymbol Method = "workspace/symbol"
	// A request to resolve the range inside the workspace
	// symbol's location.
	//
	// Since: 3.17.0
	MethodWorkspaceSymbolResolve Method = "workspaceSymbol/resolve"
	// A request to provide code lens for the given text document.
	MethodTextDocumentCodeLens Method = "textDocument/codeLens"
	// A request to resolve a command for a given code lens.
	MethodCodeLensResolve Method = "codeLens/resolve"
	// A request to refresh all code actions
	//
	// Since: 3.16.0
	MethodWorkspaceCodeLensRefresh Method = "workspace/codeLens/refresh"
	// A request to provide document links
	MethodTextDocumentDocumentLink Method = "textDocument/documentLink"
	// Request to resolve additional information for a given document link. The request's
	// parameter is of type DocumentLink the response
	// is of type DocumentLink or a Thenable that resolves to such.
	MethodDocumentLinkResolve Method = "documentLink/resolve"
	// A request to format a whole document.
	MethodTextDocumentFormatting Method = "textDocument/formatting"
	// A request to format a range in a document.
	MethodTextDocumentRangeFormatting Method = "textDocument/rangeFormatting"
	// A request to format ranges in a document.
	//
	// Since: 3.18.0
	//
	// Proposed.
	MethodTextDocumentRangesFormatting Method = "textDocument/rangesFormatting"
	// A request to format a document on type.
	MethodTextDocumentOnTypeFormatting Method = "textDocument/onTypeFormatting"
	// A request to rename a symbol.
	MethodTextDocumentRename Method = "textDocument/rename"
	// A request to test and perform the setup necessary for a rename.
	//
	// Since: 3.16 - support for default behavior
	MethodTextDocumentPrepareRename Method = "textDocument/prepareRename"
	// A request send from the client to the server to execute a command. The request might return
	// a workspace edit which the client will apply to the workspace.
	MethodWorkspaceExecuteCommand Method = "workspace/executeCommand"
	// A request sent from the server to the client to modified certain resources.
	MethodWorkspaceApplyEdit Method = "workspace/applyEdit"
	// The `workspace/didChangeWorkspaceFolders` notification is sent from the client to the server when the workspace
	// folder configuration changes.
	MethodWorkspaceDidChangeWorkspaceFolders Method = "workspace/didChangeWorkspaceFolders"
	// The `window/workDoneProgress/cancel` notification is sent from the client to the server to cancel a progress
	// initiated on the server side.
	MethodWindowWorkDoneProgressCancel Method = "window/workDoneProgress/cancel"
	// The did create files notification is sent from the client to the server when
	// files were created from within the client.
	//
	// Since: 3.16.0
	MethodWorkspaceDidCreateFiles Method = "workspace/didCreateFiles"
	// The did rename files notification is sent from the client to the server when
	// files were renamed from within the client.
	//
	// Since: 3.16.0
	MethodWorkspaceDidRenameFiles Method = "workspace/didRenameFiles"
	// The will delete files request is sent from the client to the server before files are actually
	// deleted as long as the deletion is triggered from within the client.
	//
	// Since: 3.16.0
	MethodWorkspaceDidDeleteFiles Method = "workspace/didDeleteFiles"
	// A notification sent when a notebook opens.
	//
	// Since: 3.17.0
	MethodNotebookDocumentDidOpen   Method = "notebookDocument/didOpen"
	MethodNotebookDocumentDidChange Method = "notebookDocument/didChange"
	// A notification sent when a notebook document is saved.
	//
	// Since: 3.17.0
	MethodNotebookDocumentDidSave Method = "notebookDocument/didSave"
	// A notification sent when a notebook closes.
	//
	// Since: 3.17.0
	MethodNotebookDocumentDidClose Method = "notebookDocument/didClose"
	// The initialized notification is sent from the client to the
	// server after the client is fully initialized and the server
	// is allowed to send requests from the server to the client.
	MethodInitialized Method = "initialized"
	// The exit event is sent from the client to the server to
	// ask the server to exit its process.
	MethodExit Method = "exit"
	// The configuration change notification is sent from the client to the server
	// when the client's configuration has changed. The notification contains
	// the changed configuration as defined by the language client.
	MethodWorkspaceDidChangeConfiguration Method = "workspace/didChangeConfiguration"
	// The show message notification is sent from a server to a client to ask
	// the client to display a particular message in the user interface.
	MethodWindowShowMessage Method = "window/showMessage"
	// The log message notification is sent from the server to the client to ask
	// the client to log a particular message.
	MethodWindowLogMessage Method = "window/logMessage"
	// The telemetry event notification is sent from the server to the client to ask
	// the client to log telemetry data.
	MethodTelemetryEvent Method = "telemetry/event"
	// The document open notification is sent from the client to the server to signal
	// newly opened text documents. The document's truth is now managed by the client
	// and the server must not try to read the document's truth using the document's
	// uri. Open in this sense means it is managed by the client. It doesn't necessarily
	// mean that its content is presented in an editor. An open notification must not
	// be sent more than once without a corresponding close notification send before.
	// This means open and close notification must be balanced and the max open count
	// is one.
	MethodTextDocumentDidOpen Method = "textDocument/didOpen"
	// The document change notification is sent from the client to the server to signal
	// changes to a text document.
	MethodTextDocumentDidChange Method = "textDocument/didChange"
	// The document close notification is sent from the client to the server when
	// the document got closed in the client. The document's truth now exists where
	// the document's uri points to (e.g. if the document's uri is a file uri the
	// truth now exists on disk). As with the open notification the close notification
	// is about managing the document's content. Receiving a close notification
	// doesn't mean that the document was open in an editor before. A close
	// notification requires a previous open notification to be sent.
	MethodTextDocumentDidClose Method = "textDocument/didClose"
	// The document save notification is sent from the client to the server when
	// the document got saved in the client.
	MethodTextDocumentDidSave Method = "textDocument/didSave"
	// A document will save notification is sent from the client to the server before
	// the document is actually saved.
	MethodTextDocumentWillSave Method = "textDocument/willSave"
	// The watched files notification is sent from the client to the server when
	// the client detects changes to file watched by the language client.
	MethodWorkspaceDidChangeWatchedFiles Method = "workspace/didChangeWatchedFiles"
	// Diagnostics notification are sent from the server to the client to signal
	// results of validation runs.
	MethodTextDocumentPublishDiagnostics Method = "textDocument/publishDiagnostics"
	MethodSetTrace                       Method = "$/setTrace"
	MethodLogTrace                       Method = "$/logTrace"
	MethodCancelRequest                  Method = "$/cancelRequest"
	MethodProgress                       Method = "$/progress"
)

Methods

type Moniker

type Moniker struct {
	// The scheme of the moniker. For example tsc or .Net
	Scheme string `json:"scheme"`

	// The identifier of the moniker. The value is opaque in LSIF however
	// schema owners are allowed to define the structure if they want.
	Identifier string `json:"identifier"`

	// The scope in which the moniker is unique
	Unique UniquenessLevel `json:"unique"`

	// The moniker kind if known.
	Kind *MonikerKind `json:"kind,omitzero"`
}

Moniker definition to match LSIF 0.5 moniker definition.

Since: 3.16.0

func (*Moniker) UnmarshalJSONFrom

func (s *Moniker) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type MonikerClientCapabilities

type MonikerClientCapabilities struct {
	// Whether moniker supports dynamic registration. If this is set to `true`
	// the client supports the new `MonikerRegistrationOptions` return value
	// for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Client capabilities specific to the moniker request.

Since: 3.16.0

type MonikerKind

type MonikerKind string

The moniker kind.

Since: 3.16.0

const (
	// The moniker represent a symbol that is imported into a project
	MonikerKindimport MonikerKind = "import"
	// The moniker represents a symbol that is exported from a project
	MonikerKindexport MonikerKind = "export"
	// The moniker represents a symbol that is local to a project (e.g. a local
	// variable of a function, a class not visible outside the project, ...)
	MonikerKindlocal MonikerKind = "local"
)

type MonikerOptions

type MonikerOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

type MonikerParams

type MonikerParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`
}

func (*MonikerParams) TextDocumentURI

func (s *MonikerParams) TextDocumentURI() DocumentUri

func (*MonikerParams) UnmarshalJSONFrom

func (s *MonikerParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type MonikerRegistrationOptions

type MonikerRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

func (*MonikerRegistrationOptions) UnmarshalJSONFrom

func (s *MonikerRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type MonikerResponse

type MonikerResponse = MonikersOrNull

Response type for `textDocument/moniker`

type MonikersOrNull

type MonikersOrNull struct {
	Monikers *[]*Moniker
}

func (*MonikersOrNull) MarshalJSONTo

func (o *MonikersOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*MonikersOrNull) UnmarshalJSONFrom

func (o *MonikersOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookCell

type NotebookCell struct {
	// The cell's kind
	Kind NotebookCellKind `json:"kind"`

	// The URI of the cell's text document
	// content.
	Document DocumentUri `json:"document"`

	// Additional metadata stored with the cell.
	//
	// Note: should always be an object literal (e.g. LSPObject)
	Metadata *map[string]any `json:"metadata,omitzero"`

	// Additional execution summary information
	// if supported by the client.
	ExecutionSummary *ExecutionSummary `json:"executionSummary,omitzero"`
}

A notebook cell.

A cell's document URI must be unique across ALL notebook cells and can therefore be used to uniquely identify a notebook cell or the cell's text document.

Since: 3.17.0

func (*NotebookCell) UnmarshalJSONFrom

func (s *NotebookCell) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookCellArrayChange

type NotebookCellArrayChange struct {
	// The start oftest of the cell that changed.
	Start uint32 `json:"start"`

	// The deleted cells
	DeleteCount uint32 `json:"deleteCount"`

	// The new cells, if any
	Cells *[]*NotebookCell `json:"cells,omitzero"`
}

A change describing how to move a `NotebookCell` array from state S to S'.

Since: 3.17.0

func (*NotebookCellArrayChange) UnmarshalJSONFrom

func (s *NotebookCellArrayChange) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookCellKind

type NotebookCellKind uint32

A notebook cell kind.

Since: 3.17.0

const (
	// A markup-cell is formatted source that is used for display.
	NotebookCellKindMarkup NotebookCellKind = 1
	// A code-cell is source code.
	NotebookCellKindCode NotebookCellKind = 2
)

type NotebookCellLanguage

type NotebookCellLanguage struct {
	Language string `json:"language"`
}

Since: 3.18.0

func (*NotebookCellLanguage) UnmarshalJSONFrom

func (s *NotebookCellLanguage) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookCellTextDocumentFilter

type NotebookCellTextDocumentFilter struct {
	// A filter that matches against the notebook
	// containing the notebook cell. If a string
	// value is provided it matches against the
	// notebook type. '*' matches every notebook.
	Notebook StringOrNotebookDocumentFilterNotebookTypeOrNotebookDocumentFilterSchemeOrNotebookDocumentFilterPattern `json:"notebook"`

	// A language id like `python`.
	//
	// Will be matched against the language id of the
	// notebook cell document. '*' matches every language.
	Language *string `json:"language,omitzero"`
}

A notebook cell text document filter denotes a cell text document by different properties.

Since: 3.17.0

func (*NotebookCellTextDocumentFilter) UnmarshalJSONFrom

func (s *NotebookCellTextDocumentFilter) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocument

type NotebookDocument struct {
	// The notebook document's uri.
	Uri URI `json:"uri"`

	// The type of the notebook.
	NotebookType string `json:"notebookType"`

	// The version number of this document (it will increase after each
	// change, including undo/redo).
	Version int32 `json:"version"`

	// Additional metadata stored with the notebook
	// document.
	//
	// Note: should always be an object literal (e.g. LSPObject)
	Metadata *map[string]any `json:"metadata,omitzero"`

	// The cells of a notebook.
	Cells []*NotebookCell `json:"cells"`
}

A notebook document.

Since: 3.17.0

func (*NotebookDocument) UnmarshalJSONFrom

func (s *NotebookDocument) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentCellChangeStructure

type NotebookDocumentCellChangeStructure struct {
	// The change to the cell array.
	Array *NotebookCellArrayChange `json:"array"`

	// Additional opened cell text documents.
	DidOpen *[]*TextDocumentItem `json:"didOpen,omitzero"`

	// Additional closed cell text documents.
	DidClose *[]TextDocumentIdentifier `json:"didClose,omitzero"`
}

Structural changes to cells in a notebook document.

Since: 3.18.0

func (*NotebookDocumentCellChangeStructure) UnmarshalJSONFrom

func (s *NotebookDocumentCellChangeStructure) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentCellChanges

type NotebookDocumentCellChanges struct {
	// Changes to the cell structure to add or
	// remove cells.
	Structure *NotebookDocumentCellChangeStructure `json:"structure,omitzero"`

	// Changes to notebook cells properties like its
	// kind, execution summary or metadata.
	Data *[]*NotebookCell `json:"data,omitzero"`

	// Changes to the text content of notebook cells.
	TextContent *[]*NotebookDocumentCellContentChanges `json:"textContent,omitzero"`
}

Cell changes to a notebook document.

Since: 3.18.0

type NotebookDocumentCellContentChanges

type NotebookDocumentCellContentChanges struct {
	Document VersionedTextDocumentIdentifier `json:"document"`

	Changes []TextDocumentContentChangePartialOrWholeDocument `json:"changes"`
}

Content changes to a cell in a notebook document.

Since: 3.18.0

func (*NotebookDocumentCellContentChanges) UnmarshalJSONFrom

func (s *NotebookDocumentCellContentChanges) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentChangeEvent

type NotebookDocumentChangeEvent struct {
	// The changed meta data if any.
	//
	// Note: should always be an object literal (e.g. LSPObject)
	Metadata *map[string]any `json:"metadata,omitzero"`

	// Changes to cells
	Cells *NotebookDocumentCellChanges `json:"cells,omitzero"`
}

A change event for a notebook document.

Since: 3.17.0

type NotebookDocumentClientCapabilities

type NotebookDocumentClientCapabilities struct {
	// Capabilities specific to notebook document synchronization
	//
	// Since: 3.17.0
	Synchronization *NotebookDocumentSyncClientCapabilities `json:"synchronization"`
}

Capabilities specific to the notebook document support.

Since: 3.17.0

func (*NotebookDocumentClientCapabilities) UnmarshalJSONFrom

func (s *NotebookDocumentClientCapabilities) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentFilterNotebookType

type NotebookDocumentFilterNotebookType struct {
	// The type of the enclosing notebook.
	NotebookType string `json:"notebookType"`

	// A Uri scheme, like `file` or `untitled`.
	Scheme *string `json:"scheme,omitzero"`

	// A glob pattern.
	Pattern *PatternOrRelativePattern `json:"pattern,omitzero"`
}

A notebook document filter where `notebookType` is required field.

Since: 3.18.0

func (*NotebookDocumentFilterNotebookType) UnmarshalJSONFrom

func (s *NotebookDocumentFilterNotebookType) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentFilterPattern

type NotebookDocumentFilterPattern struct {
	// The type of the enclosing notebook.
	NotebookType *string `json:"notebookType,omitzero"`

	// A Uri scheme, like `file` or `untitled`.
	Scheme *string `json:"scheme,omitzero"`

	// A glob pattern.
	Pattern PatternOrRelativePattern `json:"pattern"`
}

A notebook document filter where `pattern` is required field.

Since: 3.18.0

func (*NotebookDocumentFilterPattern) UnmarshalJSONFrom

func (s *NotebookDocumentFilterPattern) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentFilterScheme

type NotebookDocumentFilterScheme struct {
	// The type of the enclosing notebook.
	NotebookType *string `json:"notebookType,omitzero"`

	// A Uri scheme, like `file` or `untitled`.
	Scheme string `json:"scheme"`

	// A glob pattern.
	Pattern *PatternOrRelativePattern `json:"pattern,omitzero"`
}

A notebook document filter where `scheme` is required field.

Since: 3.18.0

func (*NotebookDocumentFilterScheme) UnmarshalJSONFrom

func (s *NotebookDocumentFilterScheme) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentFilterWithCells

type NotebookDocumentFilterWithCells struct {
	// The notebook to be synced If a string
	// value is provided it matches against the
	// notebook type. '*' matches every notebook.
	Notebook *StringOrNotebookDocumentFilterNotebookTypeOrNotebookDocumentFilterSchemeOrNotebookDocumentFilterPattern `json:"notebook,omitzero"`

	// The cells of the matching notebook to be synced.
	Cells []*NotebookCellLanguage `json:"cells"`
}

Since: 3.18.0

func (*NotebookDocumentFilterWithCells) UnmarshalJSONFrom

func (s *NotebookDocumentFilterWithCells) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentFilterWithNotebook

type NotebookDocumentFilterWithNotebook struct {
	// The notebook to be synced If a string
	// value is provided it matches against the
	// notebook type. '*' matches every notebook.
	Notebook StringOrNotebookDocumentFilterNotebookTypeOrNotebookDocumentFilterSchemeOrNotebookDocumentFilterPattern `json:"notebook"`

	// The cells of the matching notebook to be synced.
	Cells *[]*NotebookCellLanguage `json:"cells,omitzero"`
}

Since: 3.18.0

func (*NotebookDocumentFilterWithNotebook) UnmarshalJSONFrom

func (s *NotebookDocumentFilterWithNotebook) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentFilterWithNotebookOrCells

type NotebookDocumentFilterWithNotebookOrCells struct {
	Notebook *NotebookDocumentFilterWithNotebook
	Cells    *NotebookDocumentFilterWithCells
}

func (*NotebookDocumentFilterWithNotebookOrCells) MarshalJSONTo

func (*NotebookDocumentFilterWithNotebookOrCells) UnmarshalJSONFrom

type NotebookDocumentIdentifier

type NotebookDocumentIdentifier struct {
	// The notebook document's uri.
	Uri URI `json:"uri"`
}

A literal to identify a notebook document in the client.

Since: 3.17.0

func (*NotebookDocumentIdentifier) UnmarshalJSONFrom

func (s *NotebookDocumentIdentifier) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentSyncClientCapabilities

type NotebookDocumentSyncClientCapabilities struct {
	// Whether implementation supports dynamic registration. If this is
	// set to `true` the client supports the new
	// `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
	// return value for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client supports sending execution summary data per cell.
	ExecutionSummarySupport *bool `json:"executionSummarySupport,omitzero"`
}

Notebook specific client capabilities.

Since: 3.17.0

type NotebookDocumentSyncOptions

type NotebookDocumentSyncOptions struct {
	// The notebooks to be synced
	NotebookSelector []NotebookDocumentFilterWithNotebookOrCells `json:"notebookSelector"`

	// Whether save notification should be forwarded to
	// the server. Will only be honored if mode === `notebook`.
	Save *bool `json:"save,omitzero"`
}

Options specific to a notebook plus its cells to be synced to the server.

If a selector provides a notebook document filter but no cell selector all cells of a matching notebook document will be synced.

If a selector provides no notebook document filter but only a cell selector all notebook document that contain at least one matching cell will be synced.

Since: 3.17.0

func (*NotebookDocumentSyncOptions) UnmarshalJSONFrom

func (s *NotebookDocumentSyncOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type NotebookDocumentSyncOptionsOrRegistrationOptions

type NotebookDocumentSyncOptionsOrRegistrationOptions struct {
	Options             *NotebookDocumentSyncOptions
	RegistrationOptions *NotebookDocumentSyncRegistrationOptions
}

func (*NotebookDocumentSyncOptionsOrRegistrationOptions) MarshalJSONTo

func (*NotebookDocumentSyncOptionsOrRegistrationOptions) UnmarshalJSONFrom

type NotebookDocumentSyncRegistrationOptions

type NotebookDocumentSyncRegistrationOptions struct {
	// The notebooks to be synced
	NotebookSelector []NotebookDocumentFilterWithNotebookOrCells `json:"notebookSelector"`

	// Whether save notification should be forwarded to
	// the server. Will only be honored if mode === `notebook`.
	Save *bool `json:"save,omitzero"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Registration options specific to a notebook.

Since: 3.17.0

func (*NotebookDocumentSyncRegistrationOptions) UnmarshalJSONFrom

type NotificationInfo

type NotificationInfo[Params any] struct {
	Method Method
	// contains filtered or unexported fields
}

type Null

type Null struct{}

func (Null) MarshalJSONTo

func (Null) MarshalJSONTo(enc *jsontext.Encoder) error

func (Null) UnmarshalJSONFrom

func (Null) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type OptionalVersionedTextDocumentIdentifier

type OptionalVersionedTextDocumentIdentifier struct {
	// The text document's uri.
	Uri DocumentUri `json:"uri"`

	// The version number of this document. If a versioned text document identifier
	// is sent from the server to the client and the file is not open in the editor
	// (the server has not received an open notification before) the server can send
	// `null` to indicate that the version is unknown and the content on disk is the
	// truth (as specified with document content ownership).
	Version IntegerOrNull `json:"version"`
}

A text document identifier to optionally denote a specific version of a text document.

func (*OptionalVersionedTextDocumentIdentifier) UnmarshalJSONFrom

type ParameterInformation

type ParameterInformation struct {
	// The label of this parameter information.
	//
	// Either a string or an inclusive start and exclusive end offsets within its containing
	// signature label. (see SignatureInformation.label). The offsets are based on a UTF-16
	// string representation as `Position` and `Range` does.
	//
	// To avoid ambiguities a server should use the [start, end] offset value instead of using
	// a substring. Whether a client support this is controlled via `labelOffsetSupport` client
	// capability.
	//
	// *Note*: a label of type string should be a substring of its containing signature label.
	// Its intended use case is to highlight the parameter label part in the `SignatureInformation.label`.
	Label StringOrTuple `json:"label"`

	// The human-readable doc-comment of this parameter. Will be shown
	// in the UI but can be omitted.
	Documentation *StringOrMarkupContent `json:"documentation,omitzero"`
}

Represents a parameter of a callable-signature. A parameter can have a label and a doc-comment.

func (*ParameterInformation) UnmarshalJSONFrom

func (s *ParameterInformation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type PartialResultParams

type PartialResultParams struct {
	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`
}

type PatternOrRelativePattern

type PatternOrRelativePattern struct {
	Pattern         *string
	RelativePattern *RelativePattern
}

func (*PatternOrRelativePattern) MarshalJSONTo

func (o *PatternOrRelativePattern) MarshalJSONTo(enc *jsontext.Encoder) error

func (*PatternOrRelativePattern) UnmarshalJSONFrom

func (o *PatternOrRelativePattern) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type Position

type Position struct {
	// Line position in a document (zero-based).
	Line uint32 `json:"line"`

	// Character offset on a line in a document (zero-based).
	//
	// The meaning of this offset is determined by the negotiated
	// `PositionEncodingKind`.
	Character uint32 `json:"character"`
}

Position in a text document expressed as zero-based line and character offset. Prior to 3.17 the offsets were always based on a UTF-16 string representation. So a string of the form `a𐐀b` the character offset of the character `a` is 0, the character offset of `𐐀` is 1 and the character offset of b is 3 since `𐐀` is represented using two code units in UTF-16. Since 3.17 clients and servers can agree on a different string encoding representation (e.g. UTF-8). The client announces it's supported encoding via the client capability [`general.positionEncodings`](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#clientCapabilities). The value is an array of position encodings the client supports, with decreasing preference (e.g. the encoding at index `0` is the most preferred one). To stay backwards compatible the only mandatory encoding is UTF-16 represented via the string `utf-16`. The server can pick one of the encodings offered by the client and signals that encoding back to the client via the initialize result's property [`capabilities.positionEncoding`](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#serverCapabilities). If the string value `utf-16` is missing from the client's capability `general.positionEncodings` servers can safely assume that the client supports UTF-16. If the server omits the position encoding in its initialize result the encoding defaults to the string value `utf-16`. Implementation considerations: since the conversion from one encoding into another requires the content of the file / line the conversion is best done where the file is read which is usually on the server side.

Positions are line end character agnostic. So you can not specify a position that denotes `\r|\n` or `\n|` where `|` represents the character offset.

Since: 3.17.0 - support for negotiated position encoding.

func (*Position) UnmarshalJSONFrom

func (s *Position) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type PositionEncodingKind

type PositionEncodingKind string

A set of predefined position encoding kinds.

Since: 3.17.0

const (
	// Character offsets count UTF-8 code units (e.g. bytes).
	PositionEncodingKindUTF8 PositionEncodingKind = "utf-8"
	// Character offsets count UTF-16 code units.
	//
	// This is the default and must always be supported
	// by servers
	PositionEncodingKindUTF16 PositionEncodingKind = "utf-16"
	// Character offsets count UTF-32 code units.
	//
	// Implementation note: these are the same as Unicode codepoints,
	// so this `PositionEncodingKind` may also be used for an
	// encoding-agnostic representation of character offsets.
	PositionEncodingKindUTF32 PositionEncodingKind = "utf-32"
)

type PrepareRenameDefaultBehavior

type PrepareRenameDefaultBehavior struct {
	DefaultBehavior bool `json:"defaultBehavior"`
}

Since: 3.18.0

func (*PrepareRenameDefaultBehavior) UnmarshalJSONFrom

func (s *PrepareRenameDefaultBehavior) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type PrepareRenameParams

type PrepareRenameParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`
}

func (*PrepareRenameParams) TextDocumentURI

func (s *PrepareRenameParams) TextDocumentURI() DocumentUri

func (*PrepareRenameParams) UnmarshalJSONFrom

func (s *PrepareRenameParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type PrepareRenamePlaceholder

type PrepareRenamePlaceholder struct {
	Range Range `json:"range"`

	Placeholder string `json:"placeholder"`
}

Since: 3.18.0

func (*PrepareRenamePlaceholder) UnmarshalJSONFrom

func (s *PrepareRenamePlaceholder) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type PrepareRenameResponse

Response type for `textDocument/prepareRename`

type PrepareSupportDefaultBehavior

type PrepareSupportDefaultBehavior uint32
const (
	// The client's default behavior is to select the identifier
	// according the to language's syntax rule.
	PrepareSupportDefaultBehaviorIdentifier PrepareSupportDefaultBehavior = 1
)

type PreviousResultId

type PreviousResultId struct {
	// The URI for which the client knowns a
	// result id.
	Uri DocumentUri `json:"uri"`

	// The value of the previous result id.
	Value string `json:"value"`
}

A previous result id in a workspace pull request.

Since: 3.17.0

func (*PreviousResultId) UnmarshalJSONFrom

func (s *PreviousResultId) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ProgressParams

type ProgressParams struct {
	// The progress token provided by the client or server.
	Token IntegerOrString `json:"token"`

	// The progress data.
	Value any `json:"value"`
}

func (*ProgressParams) UnmarshalJSONFrom

func (s *ProgressParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type PublishDiagnosticsClientCapabilities

type PublishDiagnosticsClientCapabilities struct {
	// Whether the clients accepts diagnostics with related information.
	RelatedInformation *bool `json:"relatedInformation,omitzero"`

	// Client supports the tag property to provide meta data about a diagnostic.
	// Clients supporting tags have to handle unknown tags gracefully.
	//
	// Since: 3.15.0
	TagSupport *ClientDiagnosticsTagOptions `json:"tagSupport,omitzero"`

	// Client supports a codeDescription property
	//
	// Since: 3.16.0
	CodeDescriptionSupport *bool `json:"codeDescriptionSupport,omitzero"`

	// Whether code action supports the `data` property which is
	// preserved between a `textDocument/publishDiagnostics` and
	// `textDocument/codeAction` request.
	//
	// Since: 3.16.0
	DataSupport *bool `json:"dataSupport,omitzero"`

	// Whether the client interprets the version property of the
	// `textDocument/publishDiagnostics` notification's parameter.
	//
	// Since: 3.15.0
	VersionSupport *bool `json:"versionSupport,omitzero"`
}

The publish diagnostic client capabilities.

type PublishDiagnosticsParams

type PublishDiagnosticsParams struct {
	// The URI for which diagnostic information is reported.
	Uri DocumentUri `json:"uri"`

	// Optional the version number of the document the diagnostics are published for.
	//
	// Since: 3.15.0
	Version *int32 `json:"version,omitzero"`

	// An array of diagnostic information items.
	Diagnostics []*Diagnostic `json:"diagnostics"`
}

The publish diagnostic notification's parameters.

func (*PublishDiagnosticsParams) UnmarshalJSONFrom

func (s *PublishDiagnosticsParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type Range

type Range struct {
	// The range's start position.
	Start Position `json:"start"`

	// The range's end position.
	End Position `json:"end"`
}

A range in a text document expressed as (zero-based) start and end positions.

If you want to specify a range that contains a line including the line ending character(s) then use an end position denoting the start of the next line. For example: ```ts

{
    start: { line: 5, character: 23 }
    end : { line 6, character : 0 }
}

```

func (*Range) UnmarshalJSONFrom

func (s *Range) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RangeOrEditRangeWithInsertReplace

type RangeOrEditRangeWithInsertReplace struct {
	Range                      *Range
	EditRangeWithInsertReplace *EditRangeWithInsertReplace
}

func (*RangeOrEditRangeWithInsertReplace) MarshalJSONTo

func (*RangeOrEditRangeWithInsertReplace) UnmarshalJSONFrom

func (o *RangeOrEditRangeWithInsertReplace) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RangeOrPrepareRenamePlaceholderOrPrepareRenameDefaultBehaviorOrNull

type RangeOrPrepareRenamePlaceholderOrPrepareRenameDefaultBehaviorOrNull struct {
	Range                        *Range
	PrepareRenamePlaceholder     *PrepareRenamePlaceholder
	PrepareRenameDefaultBehavior *PrepareRenameDefaultBehavior
}

func (*RangeOrPrepareRenamePlaceholderOrPrepareRenameDefaultBehaviorOrNull) MarshalJSONTo

func (*RangeOrPrepareRenamePlaceholderOrPrepareRenameDefaultBehaviorOrNull) UnmarshalJSONFrom

type ReferenceClientCapabilities

type ReferenceClientCapabilities struct {
	// Whether references supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Client Capabilities for a ReferencesRequest.

type ReferenceContext

type ReferenceContext struct {
	// Include the declaration of the current symbol.
	IncludeDeclaration bool `json:"includeDeclaration"`
}

Value-object that contains additional information when requesting references.

func (*ReferenceContext) UnmarshalJSONFrom

func (s *ReferenceContext) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ReferenceOptions

type ReferenceOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Reference options.

type ReferenceParams

type ReferenceParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	Context *ReferenceContext `json:"context"`
}

Parameters for a ReferencesRequest.

func (*ReferenceParams) TextDocumentURI

func (s *ReferenceParams) TextDocumentURI() DocumentUri

func (*ReferenceParams) UnmarshalJSONFrom

func (s *ReferenceParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ReferenceRegistrationOptions

type ReferenceRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Registration options for a ReferencesRequest.

func (*ReferenceRegistrationOptions) UnmarshalJSONFrom

func (s *ReferenceRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ReferencesResponse

type ReferencesResponse = LocationsOrNull

Response type for `textDocument/references`

type Registration

type Registration struct {
	// The id used to register the request. The id can be used to deregister
	// the request again.
	Id string `json:"id"`

	// The method / capability to register for.
	Method string `json:"method"`

	// Options necessary for the registration.
	RegisterOptions *any `json:"registerOptions,omitzero"`
}

General parameters to register for a notification or to register a provider.

func (*Registration) UnmarshalJSONFrom

func (s *Registration) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RegistrationParams

type RegistrationParams struct {
	Registrations []*Registration `json:"registrations"`
}

func (*RegistrationParams) UnmarshalJSONFrom

func (s *RegistrationParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RegistrationResponse

type RegistrationResponse = Null

Response type for `client/registerCapability`

type RegularExpressionsClientCapabilities

type RegularExpressionsClientCapabilities struct {
	// The engine's name.
	Engine string `json:"engine"`

	// The engine's version.
	Version *string `json:"version,omitzero"`
}

Client capabilities specific to regular expressions.

Since: 3.16.0

func (*RegularExpressionsClientCapabilities) UnmarshalJSONFrom

func (s *RegularExpressionsClientCapabilities) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RelatedFullDocumentDiagnosticReport

type RelatedFullDocumentDiagnosticReport struct {
	// A full document diagnostic report.
	Kind StringLiteralFull `json:"kind"`

	// An optional result id. If provided it will
	// be sent on the next diagnostic request for the
	// same document.
	ResultId *string `json:"resultId,omitzero"`

	// The actual items.
	Items []*Diagnostic `json:"items"`

	// Diagnostics of related documents. This information is useful
	// in programming languages where code in a file A can generate
	// diagnostics in a file B which A depends on. An example of
	// such a language is C/C++ where marco definitions in a file
	// a.cpp and result in errors in a header file b.hpp.
	//
	// Since: 3.17.0
	RelatedDocuments *map[DocumentUri]FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport `json:"relatedDocuments,omitzero"`
}

A full diagnostic report with a set of related documents.

Since: 3.17.0

func (*RelatedFullDocumentDiagnosticReport) UnmarshalJSONFrom

func (s *RelatedFullDocumentDiagnosticReport) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RelatedFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport

type RelatedFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport struct {
	FullDocumentDiagnosticReport      *RelatedFullDocumentDiagnosticReport
	UnchangedDocumentDiagnosticReport *RelatedUnchangedDocumentDiagnosticReport
}

func (*RelatedFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport) MarshalJSONTo

func (*RelatedFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport) UnmarshalJSONFrom

type RelatedUnchangedDocumentDiagnosticReport

type RelatedUnchangedDocumentDiagnosticReport struct {
	// A document diagnostic report indicating
	// no changes to the last result. A server can
	// only return `unchanged` if result ids are
	// provided.
	Kind StringLiteralUnchanged `json:"kind"`

	// A result id which will be sent on the next
	// diagnostic request for the same document.
	ResultId string `json:"resultId"`

	// Diagnostics of related documents. This information is useful
	// in programming languages where code in a file A can generate
	// diagnostics in a file B which A depends on. An example of
	// such a language is C/C++ where marco definitions in a file
	// a.cpp and result in errors in a header file b.hpp.
	//
	// Since: 3.17.0
	RelatedDocuments *map[DocumentUri]FullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport `json:"relatedDocuments,omitzero"`
}

An unchanged diagnostic report with a set of related documents.

Since: 3.17.0

func (*RelatedUnchangedDocumentDiagnosticReport) UnmarshalJSONFrom

type RelativePattern

type RelativePattern struct {
	// A workspace folder or a base URI to which this pattern will be matched
	// against relatively.
	BaseUri WorkspaceFolderOrURI `json:"baseUri"`

	// The actual glob pattern;
	Pattern string `json:"pattern"`
}

A relative pattern is a helper to construct glob patterns that are matched relatively to a base URI. The common value for a `baseUri` is a workspace folder root, but it can be another absolute URI as well.

Since: 3.17.0

func (*RelativePattern) UnmarshalJSONFrom

func (s *RelativePattern) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RenameClientCapabilities

type RenameClientCapabilities struct {
	// Whether rename supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Client supports testing for validity of rename operations
	// before execution.
	//
	// Since: 3.12.0
	PrepareSupport *bool `json:"prepareSupport,omitzero"`

	// Client supports the default behavior result.
	//
	// The value indicates the default behavior used by the
	// client.
	//
	// Since: 3.16.0
	PrepareSupportDefaultBehavior *PrepareSupportDefaultBehavior `json:"prepareSupportDefaultBehavior,omitzero"`

	// Whether the client honors the change annotations in
	// text edits and resource operations returned via the
	// rename request's workspace edit by for example presenting
	// the workspace edit in the user interface and asking
	// for confirmation.
	//
	// Since: 3.16.0
	HonorsChangeAnnotations *bool `json:"honorsChangeAnnotations,omitzero"`
}

type RenameFile

type RenameFile struct {
	// A rename
	Kind StringLiteralRename `json:"kind"`

	// An optional annotation identifier describing the operation.
	//
	// Since: 3.16.0
	AnnotationId *string `json:"annotationId,omitzero"`

	// The old (existing) location.
	OldUri DocumentUri `json:"oldUri"`

	// The new location.
	NewUri DocumentUri `json:"newUri"`

	// Rename options.
	Options *RenameFileOptions `json:"options,omitzero"`
}

Rename file operation

func (*RenameFile) UnmarshalJSONFrom

func (s *RenameFile) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RenameFileOptions

type RenameFileOptions struct {
	// Overwrite target if existing. Overwrite wins over `ignoreIfExists`
	Overwrite *bool `json:"overwrite,omitzero"`

	// Ignores if target exists.
	IgnoreIfExists *bool `json:"ignoreIfExists,omitzero"`
}

Rename file options

type RenameFilesParams

type RenameFilesParams struct {
	// An array of all files/folders renamed in this operation. When a folder is renamed, only
	// the folder will be included, and not its children.
	Files []*FileRename `json:"files"`
}

The parameters sent in notifications/requests for user-initiated renames of files.

Since: 3.16.0

func (*RenameFilesParams) UnmarshalJSONFrom

func (s *RenameFilesParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RenameOptions

type RenameOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Renames should be checked and tested before being executed.
	//
	// Since: version 3.12.0
	PrepareProvider *bool `json:"prepareProvider,omitzero"`
}

Provider options for a RenameRequest.

type RenameParams

type RenameParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The document to rename.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position at which this request was sent.
	Position Position `json:"position"`

	// The new name of the symbol. If the given name is not valid the
	// request must return a ResponseError with an
	// appropriate message set.
	NewName string `json:"newName"`
}

The parameters of a RenameRequest.

func (*RenameParams) TextDocumentURI

func (s *RenameParams) TextDocumentURI() DocumentUri

func (*RenameParams) UnmarshalJSONFrom

func (s *RenameParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RenameRegistrationOptions

type RenameRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Renames should be checked and tested before being executed.
	//
	// Since: version 3.12.0
	PrepareProvider *bool `json:"prepareProvider,omitzero"`
}

Registration options for a RenameRequest.

func (*RenameRegistrationOptions) UnmarshalJSONFrom

func (s *RenameRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type RenameResponse

type RenameResponse = WorkspaceEditOrNull

Response type for `textDocument/rename`

type RequestInfo

type RequestInfo[Params, Resp any] struct {
	Method Method
	// contains filtered or unexported fields
}

type RequestMessage

type RequestMessage struct {
	JSONRPC JSONRPCVersion `json:"jsonrpc"`
	ID      *ID            `json:"id,omitzero"`
	Method  Method         `json:"method"`
	Params  any            `json:"params,omitzero"`
}

func NewNotificationMessage

func NewNotificationMessage(method Method, params any) *RequestMessage

func NewRequestMessage

func NewRequestMessage(method Method, id *ID, params any) *RequestMessage

func (*RequestMessage) Message

func (r *RequestMessage) Message() *Message

func (*RequestMessage) UnmarshalJSON

func (r *RequestMessage) UnmarshalJSON(data []byte) error

type ResourceOperation

type ResourceOperation struct {
	// The resource operation kind.
	Kind string `json:"kind"`

	// An optional annotation identifier describing the operation.
	//
	// Since: 3.16.0
	AnnotationId *string `json:"annotationId,omitzero"`
}

A generic resource operation.

func (*ResourceOperation) UnmarshalJSONFrom

func (s *ResourceOperation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ResourceOperationKind

type ResourceOperationKind string
const (
	// Supports creating new files and folders.
	ResourceOperationKindCreate ResourceOperationKind = "create"
	// Supports renaming existing files and folders.
	ResourceOperationKindRename ResourceOperationKind = "rename"
	// Supports deleting existing files and folders.
	ResourceOperationKindDelete ResourceOperationKind = "delete"
)

type ResponseError

type ResponseError struct {
	Code    int32  `json:"code"`
	Message string `json:"message"`
	Data    any    `json:"data,omitzero"`
}

func (*ResponseError) String

func (r *ResponseError) String() string

type ResponseMessage

type ResponseMessage struct {
	JSONRPC JSONRPCVersion `json:"jsonrpc"`
	ID      *ID            `json:"id,omitzero"`
	Result  any            `json:"result,omitzero"`
	Error   *ResponseError `json:"error,omitzero"`
}

func (*ResponseMessage) Message

func (r *ResponseMessage) Message() *Message

type SaveOptions

type SaveOptions struct {
	// The client is supposed to include the content on save.
	IncludeText *bool `json:"includeText,omitzero"`
}

Save options.

type SelectedCompletionInfo

type SelectedCompletionInfo struct {
	// The range that will be replaced if this completion item is accepted.
	Range Range `json:"range"`

	// The text the range will be replaced with if this completion is accepted.
	Text string `json:"text"`
}

Describes the currently selected completion item.

Since: 3.18.0

Proposed.

func (*SelectedCompletionInfo) UnmarshalJSONFrom

func (s *SelectedCompletionInfo) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SelectionRange

type SelectionRange struct {
	// The range of this selection range.
	Range Range `json:"range"`

	// The parent selection range containing this range. Therefore `parent.range` must contain `this.range`.
	Parent *SelectionRange `json:"parent,omitzero"`
}

A selection range represents a part of a selection hierarchy. A selection range may have a parent selection range that contains it.

func (*SelectionRange) UnmarshalJSONFrom

func (s *SelectionRange) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SelectionRangeClientCapabilities

type SelectionRangeClientCapabilities struct {
	// Whether implementation supports dynamic registration for selection range providers. If this is set to `true`
	// the client supports the new `SelectionRangeRegistrationOptions` return value for the corresponding server
	// capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

type SelectionRangeOptions

type SelectionRangeOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

type SelectionRangeParams

type SelectionRangeParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The positions inside the text document.
	Positions []Position `json:"positions"`
}

A parameter literal used in selection range requests.

func (*SelectionRangeParams) TextDocumentURI

func (s *SelectionRangeParams) TextDocumentURI() DocumentUri

func (*SelectionRangeParams) UnmarshalJSONFrom

func (s *SelectionRangeParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SelectionRangeRegistrationOptions

type SelectionRangeRegistrationOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

func (*SelectionRangeRegistrationOptions) UnmarshalJSONFrom

func (s *SelectionRangeRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SelectionRangeResponse

type SelectionRangeResponse = SelectionRangesOrNull

Response type for `textDocument/selectionRange`

type SelectionRangesOrNull

type SelectionRangesOrNull struct {
	SelectionRanges *[]*SelectionRange
}

func (*SelectionRangesOrNull) MarshalJSONTo

func (o *SelectionRangesOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*SelectionRangesOrNull) UnmarshalJSONFrom

func (o *SelectionRangesOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokenModifiers

type SemanticTokenModifiers string

A set of predefined token modifiers. This set is not fixed an clients can specify additional token types via the corresponding client capabilities.

Since: 3.16.0

const (
	SemanticTokenModifiersdeclaration    SemanticTokenModifiers = "declaration"
	SemanticTokenModifiersdefinition     SemanticTokenModifiers = "definition"
	SemanticTokenModifiersreadonly       SemanticTokenModifiers = "readonly"
	SemanticTokenModifiersstatic         SemanticTokenModifiers = "static"
	SemanticTokenModifiersdeprecated     SemanticTokenModifiers = "deprecated"
	SemanticTokenModifiersabstract       SemanticTokenModifiers = "abstract"
	SemanticTokenModifiersasync          SemanticTokenModifiers = "async"
	SemanticTokenModifiersmodification   SemanticTokenModifiers = "modification"
	SemanticTokenModifiersdocumentation  SemanticTokenModifiers = "documentation"
	SemanticTokenModifiersdefaultLibrary SemanticTokenModifiers = "defaultLibrary"
)

type SemanticTokenTypes

type SemanticTokenTypes string

A set of predefined token types. This set is not fixed an clients can specify additional token types via the corresponding client capabilities.

Since: 3.16.0

const (
	SemanticTokenTypesnamespace SemanticTokenTypes = "namespace"
	// Represents a generic type. Acts as a fallback for types which can't be mapped to
	// a specific type like class or enum.
	SemanticTokenTypestype          SemanticTokenTypes = "type"
	SemanticTokenTypesclass         SemanticTokenTypes = "class"
	SemanticTokenTypesenum          SemanticTokenTypes = "enum"
	SemanticTokenTypesinterface     SemanticTokenTypes = "interface"
	SemanticTokenTypesstruct        SemanticTokenTypes = "struct"
	SemanticTokenTypestypeParameter SemanticTokenTypes = "typeParameter"
	SemanticTokenTypesparameter     SemanticTokenTypes = "parameter"
	SemanticTokenTypesvariable      SemanticTokenTypes = "variable"
	SemanticTokenTypesproperty      SemanticTokenTypes = "property"
	SemanticTokenTypesenumMember    SemanticTokenTypes = "enumMember"
	SemanticTokenTypesevent         SemanticTokenTypes = "event"
	SemanticTokenTypesfunction      SemanticTokenTypes = "function"
	SemanticTokenTypesmethod        SemanticTokenTypes = "method"
	SemanticTokenTypesmacro         SemanticTokenTypes = "macro"
	SemanticTokenTypeskeyword       SemanticTokenTypes = "keyword"
	SemanticTokenTypesmodifier      SemanticTokenTypes = "modifier"
	SemanticTokenTypescomment       SemanticTokenTypes = "comment"
	SemanticTokenTypesstring        SemanticTokenTypes = "string"
	SemanticTokenTypesnumber        SemanticTokenTypes = "number"
	SemanticTokenTypesregexp        SemanticTokenTypes = "regexp"
	SemanticTokenTypesoperator      SemanticTokenTypes = "operator"
	// Since: 3.17.0
	SemanticTokenTypesdecorator SemanticTokenTypes = "decorator"
	// Since: 3.18.0
	SemanticTokenTypeslabel SemanticTokenTypes = "label"
)

type SemanticTokens

type SemanticTokens struct {
	// An optional result id. If provided and clients support delta updating
	// the client will include the result id in the next semantic token request.
	// A server can then instead of computing all semantic tokens again simply
	// send a delta.
	ResultId *string `json:"resultId,omitzero"`

	// The actual tokens.
	Data []uint32 `json:"data"`
}

Since: 3.16.0

func (*SemanticTokens) UnmarshalJSONFrom

func (s *SemanticTokens) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensClientCapabilities

type SemanticTokensClientCapabilities struct {
	// Whether implementation supports dynamic registration. If this is set to `true`
	// the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
	// return value for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Which requests the client supports and might send to the server
	// depending on the server's capability. Please note that clients might not
	// show semantic tokens or degrade some of the user experience if a range
	// or full request is advertised by the client but not provided by the
	// server. If for example the client capability `requests.full` and
	// `request.range` are both set to true but the server only provides a
	// range provider the client might not render a minimap correctly or might
	// even decide to not show any semantic tokens at all.
	Requests *ClientSemanticTokensRequestOptions `json:"requests"`

	// The token types that the client supports.
	TokenTypes []string `json:"tokenTypes"`

	// The token modifiers that the client supports.
	TokenModifiers []string `json:"tokenModifiers"`

	// The token formats the clients supports.
	Formats []TokenFormat `json:"formats"`

	// Whether the client supports tokens that can overlap each other.
	OverlappingTokenSupport *bool `json:"overlappingTokenSupport,omitzero"`

	// Whether the client supports tokens that can span multiple lines.
	MultilineTokenSupport *bool `json:"multilineTokenSupport,omitzero"`

	// Whether the client allows the server to actively cancel a
	// semantic token request, e.g. supports returning
	// LSPErrorCodes.ServerCancelled. If a server does the client
	// needs to retrigger the request.
	//
	// Since: 3.17.0
	ServerCancelSupport *bool `json:"serverCancelSupport,omitzero"`

	// Whether the client uses semantic tokens to augment existing
	// syntax tokens. If set to `true` client side created syntax
	// tokens and semantic tokens are both used for colorization. If
	// set to `false` the client only uses the returned semantic tokens
	// for colorization.
	//
	// If the value is `undefined` then the client behavior is not
	// specified.
	//
	// Since: 3.17.0
	AugmentsSyntaxTokens *bool `json:"augmentsSyntaxTokens,omitzero"`
}

Since: 3.16.0

func (*SemanticTokensClientCapabilities) UnmarshalJSONFrom

func (s *SemanticTokensClientCapabilities) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensDelta

type SemanticTokensDelta struct {
	ResultId *string `json:"resultId,omitzero"`

	// The semantic token edits to transform a previous result into a new result.
	Edits []*SemanticTokensEdit `json:"edits"`
}

Since: 3.16.0

func (*SemanticTokensDelta) UnmarshalJSONFrom

func (s *SemanticTokensDelta) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensDeltaParams

type SemanticTokensDeltaParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The result id of a previous response. The result Id can either point to a full response
	// or a delta response depending on what was received last.
	PreviousResultId string `json:"previousResultId"`
}

Since: 3.16.0

func (*SemanticTokensDeltaParams) TextDocumentURI

func (s *SemanticTokensDeltaParams) TextDocumentURI() DocumentUri

func (*SemanticTokensDeltaParams) UnmarshalJSONFrom

func (s *SemanticTokensDeltaParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensDeltaPartialResult

type SemanticTokensDeltaPartialResult struct {
	Edits []*SemanticTokensEdit `json:"edits"`
}

Since: 3.16.0

func (*SemanticTokensDeltaPartialResult) UnmarshalJSONFrom

func (s *SemanticTokensDeltaPartialResult) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensDeltaResponse

type SemanticTokensDeltaResponse = SemanticTokensOrSemanticTokensDeltaOrNull

Response type for `textDocument/semanticTokens/full/delta`

type SemanticTokensEdit

type SemanticTokensEdit struct {
	// The start offset of the edit.
	Start uint32 `json:"start"`

	// The count of elements to remove.
	DeleteCount uint32 `json:"deleteCount"`

	// The elements to insert.
	Data *[]uint32 `json:"data,omitzero"`
}

Since: 3.16.0

func (*SemanticTokensEdit) UnmarshalJSONFrom

func (s *SemanticTokensEdit) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensFullDelta

type SemanticTokensFullDelta struct {
	// The server supports deltas for full documents.
	Delta *bool `json:"delta,omitzero"`
}

Semantic tokens options to support deltas for full documents

Since: 3.18.0

type SemanticTokensLegend

type SemanticTokensLegend struct {
	// The token types a server uses.
	TokenTypes []string `json:"tokenTypes"`

	// The token modifiers a server uses.
	TokenModifiers []string `json:"tokenModifiers"`
}

Since: 3.16.0

func (*SemanticTokensLegend) UnmarshalJSONFrom

func (s *SemanticTokensLegend) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensOptions

type SemanticTokensOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The legend used by the server
	Legend *SemanticTokensLegend `json:"legend"`

	// Server supports providing semantic tokens for a specific range
	// of a document.
	Range *BooleanOrEmptyObject `json:"range,omitzero"`

	// Server supports providing semantic tokens for a full document.
	Full *BooleanOrSemanticTokensFullDelta `json:"full,omitzero"`
}

Since: 3.16.0

func (*SemanticTokensOptions) UnmarshalJSONFrom

func (s *SemanticTokensOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensOptionsOrRegistrationOptions

type SemanticTokensOptionsOrRegistrationOptions struct {
	Options             *SemanticTokensOptions
	RegistrationOptions *SemanticTokensRegistrationOptions
}

func (*SemanticTokensOptionsOrRegistrationOptions) MarshalJSONTo

func (*SemanticTokensOptionsOrRegistrationOptions) UnmarshalJSONFrom

type SemanticTokensOrNull

type SemanticTokensOrNull struct {
	SemanticTokens *SemanticTokens
}

func (*SemanticTokensOrNull) MarshalJSONTo

func (o *SemanticTokensOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*SemanticTokensOrNull) UnmarshalJSONFrom

func (o *SemanticTokensOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensOrSemanticTokensDeltaOrNull

type SemanticTokensOrSemanticTokensDeltaOrNull struct {
	SemanticTokens      *SemanticTokens
	SemanticTokensDelta *SemanticTokensDelta
}

func (*SemanticTokensOrSemanticTokensDeltaOrNull) MarshalJSONTo

func (*SemanticTokensOrSemanticTokensDeltaOrNull) UnmarshalJSONFrom

type SemanticTokensParams

type SemanticTokensParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`
}

Since: 3.16.0

func (*SemanticTokensParams) TextDocumentURI

func (s *SemanticTokensParams) TextDocumentURI() DocumentUri

func (*SemanticTokensParams) UnmarshalJSONFrom

func (s *SemanticTokensParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensPartialResult

type SemanticTokensPartialResult struct {
	Data []uint32 `json:"data"`
}

Since: 3.16.0

func (*SemanticTokensPartialResult) UnmarshalJSONFrom

func (s *SemanticTokensPartialResult) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensRangeParams

type SemanticTokensRangeParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The range the semantic tokens are requested for.
	Range Range `json:"range"`
}

Since: 3.16.0

func (*SemanticTokensRangeParams) TextDocumentURI

func (s *SemanticTokensRangeParams) TextDocumentURI() DocumentUri

func (*SemanticTokensRangeParams) UnmarshalJSONFrom

func (s *SemanticTokensRangeParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensRangeResponse

type SemanticTokensRangeResponse = SemanticTokensOrNull

Response type for `textDocument/semanticTokens/range`

type SemanticTokensRefreshResponse

type SemanticTokensRefreshResponse = Null

Response type for `workspace/semanticTokens/refresh`

type SemanticTokensRegistrationOptions

type SemanticTokensRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The legend used by the server
	Legend *SemanticTokensLegend `json:"legend"`

	// Server supports providing semantic tokens for a specific range
	// of a document.
	Range *BooleanOrEmptyObject `json:"range,omitzero"`

	// Server supports providing semantic tokens for a full document.
	Full *BooleanOrSemanticTokensFullDelta `json:"full,omitzero"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Since: 3.16.0

func (*SemanticTokensRegistrationOptions) UnmarshalJSONFrom

func (s *SemanticTokensRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SemanticTokensResponse

type SemanticTokensResponse = SemanticTokensOrNull

Response type for `textDocument/semanticTokens/full`

type SemanticTokensWorkspaceClientCapabilities

type SemanticTokensWorkspaceClientCapabilities struct {
	// Whether the client implementation supports a refresh request sent from
	// the server to the client.
	//
	// Note that this event is global and will force the client to refresh all
	// semantic tokens currently shown. It should be used with absolute care
	// and is useful for situation where a server for example detects a project
	// wide change that requires such a calculation.
	RefreshSupport *bool `json:"refreshSupport,omitzero"`
}

Since: 3.16.0

type ServerCapabilities

type ServerCapabilities struct {
	// The position encoding the server picked from the encodings offered
	// by the client via the client capability `general.positionEncodings`.
	//
	// If the client didn't provide any position encodings the only valid
	// value that a server can return is 'utf-16'.
	//
	// If omitted it defaults to 'utf-16'.
	//
	// Since: 3.17.0
	PositionEncoding *PositionEncodingKind `json:"positionEncoding,omitzero"`

	// Defines how text documents are synced. Is either a detailed structure
	// defining each notification or for backwards compatibility the
	// TextDocumentSyncKind number.
	TextDocumentSync *TextDocumentSyncOptionsOrKind `json:"textDocumentSync,omitzero"`

	// Defines how notebook documents are synced.
	//
	// Since: 3.17.0
	NotebookDocumentSync *NotebookDocumentSyncOptionsOrRegistrationOptions `json:"notebookDocumentSync,omitzero"`

	// The server provides completion support.
	CompletionProvider *CompletionOptions `json:"completionProvider,omitzero"`

	// The server provides hover support.
	HoverProvider *BooleanOrHoverOptions `json:"hoverProvider,omitzero"`

	// The server provides signature help support.
	SignatureHelpProvider *SignatureHelpOptions `json:"signatureHelpProvider,omitzero"`

	// The server provides Goto Declaration support.
	DeclarationProvider *BooleanOrDeclarationOptionsOrDeclarationRegistrationOptions `json:"declarationProvider,omitzero"`

	// The server provides goto definition support.
	DefinitionProvider *BooleanOrDefinitionOptions `json:"definitionProvider,omitzero"`

	// The server provides Goto Type Definition support.
	TypeDefinitionProvider *BooleanOrTypeDefinitionOptionsOrTypeDefinitionRegistrationOptions `json:"typeDefinitionProvider,omitzero"`

	// The server provides Goto Implementation support.
	ImplementationProvider *BooleanOrImplementationOptionsOrImplementationRegistrationOptions `json:"implementationProvider,omitzero"`

	// The server provides find references support.
	ReferencesProvider *BooleanOrReferenceOptions `json:"referencesProvider,omitzero"`

	// The server provides document highlight support.
	DocumentHighlightProvider *BooleanOrDocumentHighlightOptions `json:"documentHighlightProvider,omitzero"`

	// The server provides document symbol support.
	DocumentSymbolProvider *BooleanOrDocumentSymbolOptions `json:"documentSymbolProvider,omitzero"`

	// The server provides code actions. CodeActionOptions may only be
	// specified if the client states that it supports
	// `codeActionLiteralSupport` in its initial `initialize` request.
	CodeActionProvider *BooleanOrCodeActionOptions `json:"codeActionProvider,omitzero"`

	// The server provides code lens.
	CodeLensProvider *CodeLensOptions `json:"codeLensProvider,omitzero"`

	// The server provides document link support.
	DocumentLinkProvider *DocumentLinkOptions `json:"documentLinkProvider,omitzero"`

	// The server provides color provider support.
	ColorProvider *BooleanOrDocumentColorOptionsOrDocumentColorRegistrationOptions `json:"colorProvider,omitzero"`

	// The server provides workspace symbol support.
	WorkspaceSymbolProvider *BooleanOrWorkspaceSymbolOptions `json:"workspaceSymbolProvider,omitzero"`

	// The server provides document formatting.
	DocumentFormattingProvider *BooleanOrDocumentFormattingOptions `json:"documentFormattingProvider,omitzero"`

	// The server provides document range formatting.
	DocumentRangeFormattingProvider *BooleanOrDocumentRangeFormattingOptions `json:"documentRangeFormattingProvider,omitzero"`

	// The server provides document formatting on typing.
	DocumentOnTypeFormattingProvider *DocumentOnTypeFormattingOptions `json:"documentOnTypeFormattingProvider,omitzero"`

	// The server provides rename support. RenameOptions may only be
	// specified if the client states that it supports
	// `prepareSupport` in its initial `initialize` request.
	RenameProvider *BooleanOrRenameOptions `json:"renameProvider,omitzero"`

	// The server provides folding provider support.
	FoldingRangeProvider *BooleanOrFoldingRangeOptionsOrFoldingRangeRegistrationOptions `json:"foldingRangeProvider,omitzero"`

	// The server provides selection range support.
	SelectionRangeProvider *BooleanOrSelectionRangeOptionsOrSelectionRangeRegistrationOptions `json:"selectionRangeProvider,omitzero"`

	// The server provides execute command support.
	ExecuteCommandProvider *ExecuteCommandOptions `json:"executeCommandProvider,omitzero"`

	// The server provides call hierarchy support.
	//
	// Since: 3.16.0
	CallHierarchyProvider *BooleanOrCallHierarchyOptionsOrCallHierarchyRegistrationOptions `json:"callHierarchyProvider,omitzero"`

	// The server provides linked editing range support.
	//
	// Since: 3.16.0
	LinkedEditingRangeProvider *BooleanOrLinkedEditingRangeOptionsOrLinkedEditingRangeRegistrationOptions `json:"linkedEditingRangeProvider,omitzero"`

	// The server provides semantic tokens support.
	//
	// Since: 3.16.0
	SemanticTokensProvider *SemanticTokensOptionsOrRegistrationOptions `json:"semanticTokensProvider,omitzero"`

	// The server provides moniker support.
	//
	// Since: 3.16.0
	MonikerProvider *BooleanOrMonikerOptionsOrMonikerRegistrationOptions `json:"monikerProvider,omitzero"`

	// The server provides type hierarchy support.
	//
	// Since: 3.17.0
	TypeHierarchyProvider *BooleanOrTypeHierarchyOptionsOrTypeHierarchyRegistrationOptions `json:"typeHierarchyProvider,omitzero"`

	// The server provides inline values.
	//
	// Since: 3.17.0
	InlineValueProvider *BooleanOrInlineValueOptionsOrInlineValueRegistrationOptions `json:"inlineValueProvider,omitzero"`

	// The server provides inlay hints.
	//
	// Since: 3.17.0
	InlayHintProvider *BooleanOrInlayHintOptionsOrInlayHintRegistrationOptions `json:"inlayHintProvider,omitzero"`

	// The server has support for pull model diagnostics.
	//
	// Since: 3.17.0
	DiagnosticProvider *DiagnosticOptionsOrRegistrationOptions `json:"diagnosticProvider,omitzero"`

	// Inline completion options used during static registration.
	//
	// Since: 3.18.0
	//
	// Proposed.
	InlineCompletionProvider *BooleanOrInlineCompletionOptions `json:"inlineCompletionProvider,omitzero"`

	// Workspace specific server capabilities.
	Workspace *WorkspaceOptions `json:"workspace,omitzero"`

	// Experimental server capabilities.
	Experimental *any `json:"experimental,omitzero"`
}

Defines the capabilities provided by a language server.

type ServerCompletionItemOptions

type ServerCompletionItemOptions struct {
	// The server has support for completion item label
	// details (see also `CompletionItemLabelDetails`) when
	// receiving a completion item in a resolve call.
	//
	// Since: 3.17.0
	LabelDetailsSupport *bool `json:"labelDetailsSupport,omitzero"`
}

Since: 3.18.0

type ServerInfo

type ServerInfo struct {
	// The name of the server as defined by the server.
	Name string `json:"name"`

	// The server's version as defined by the server.
	Version *string `json:"version,omitzero"`
}

Information about the server

Since: 3.15.0

Since: 3.18.0 ServerInfo type name added.

func (*ServerInfo) UnmarshalJSONFrom

func (s *ServerInfo) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SetTraceParams

type SetTraceParams struct {
	Value TraceValue `json:"value"`
}

func (*SetTraceParams) UnmarshalJSONFrom

func (s *SetTraceParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ShowDocumentClientCapabilities

type ShowDocumentClientCapabilities struct {
	// The client has support for the showDocument
	// request.
	Support bool `json:"support"`
}

Client capabilities for the showDocument request.

Since: 3.16.0

func (*ShowDocumentClientCapabilities) UnmarshalJSONFrom

func (s *ShowDocumentClientCapabilities) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ShowDocumentParams

type ShowDocumentParams struct {
	// The uri to show.
	Uri URI `json:"uri"`

	// Indicates to show the resource in an external program.
	// To show, for example, `https://code.visualstudio.com/`
	// in the default WEB browser set `external` to `true`.
	External *bool `json:"external,omitzero"`

	// An optional property to indicate whether the editor
	// showing the document should take focus or not.
	// Clients might ignore this property if an external
	// program is started.
	TakeFocus *bool `json:"takeFocus,omitzero"`

	// An optional selection range if the document is a text
	// document. Clients might ignore the property if an
	// external program is started or the file is not a text
	// file.
	Selection *Range `json:"selection,omitzero"`
}

Params to show a resource in the UI.

Since: 3.16.0

func (*ShowDocumentParams) UnmarshalJSONFrom

func (s *ShowDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ShowDocumentResponse

type ShowDocumentResponse = *ShowDocumentResult

Response type for `window/showDocument`

type ShowDocumentResult

type ShowDocumentResult struct {
	// A boolean indicating if the show was successful.
	Success bool `json:"success"`
}

The result of a showDocument request.

Since: 3.16.0

func (*ShowDocumentResult) UnmarshalJSONFrom

func (s *ShowDocumentResult) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ShowMessageParams

type ShowMessageParams struct {
	// The message type. See MessageType
	Type MessageType `json:"type"`

	// The actual message.
	Message string `json:"message"`
}

The parameters of a notification message.

func (*ShowMessageParams) UnmarshalJSONFrom

func (s *ShowMessageParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ShowMessageRequestClientCapabilities

type ShowMessageRequestClientCapabilities struct {
	// Capabilities specific to the `MessageActionItem` type.
	MessageActionItem *ClientShowMessageActionItemOptions `json:"messageActionItem,omitzero"`
}

Show message request client capabilities

type ShowMessageRequestParams

type ShowMessageRequestParams struct {
	// The message type. See MessageType
	Type MessageType `json:"type"`

	// The actual message.
	Message string `json:"message"`

	// The message action items to present.
	Actions *[]*MessageActionItem `json:"actions,omitzero"`
}

func (*ShowMessageRequestParams) UnmarshalJSONFrom

func (s *ShowMessageRequestParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type ShowMessageResponse

type ShowMessageResponse = MessageActionItemOrNull

Response type for `window/showMessageRequest`

type ShutdownResponse

type ShutdownResponse = Null

Response type for `shutdown`

type SignatureHelp

type SignatureHelp struct {
	// One or more signatures.
	Signatures []*SignatureInformation `json:"signatures"`

	// The active signature. If omitted or the value lies outside the
	// range of `signatures` the value defaults to zero or is ignored if
	// the `SignatureHelp` has no signatures.
	//
	// Whenever possible implementors should make an active decision about
	// the active signature and shouldn't rely on a default value.
	//
	// In future version of the protocol this property might become
	// mandatory to better express this.
	ActiveSignature *uint32 `json:"activeSignature,omitzero"`

	// The active parameter of the active signature.
	//
	// If `null`, no parameter of the signature is active (for example a named
	// argument that does not match any declared parameters). This is only valid
	// if the client specifies the client capability
	// `textDocument.signatureHelp.noActiveParameterSupport === true`
	//
	// If omitted or the value lies outside the range of
	// `signatures[activeSignature].parameters` defaults to 0 if the active
	// signature has parameters.
	//
	// If the active signature has no parameters it is ignored.
	//
	// In future version of the protocol this property might become
	// mandatory (but still nullable) to better express the active parameter if
	// the active signature does have any.
	ActiveParameter *UintegerOrNull `json:"activeParameter,omitzero"`
}

Signature help represents the signature of something callable. There can be multiple signature but only one active and only one active parameter.

func (*SignatureHelp) UnmarshalJSONFrom

func (s *SignatureHelp) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SignatureHelpClientCapabilities

type SignatureHelpClientCapabilities struct {
	// Whether signature help supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client supports the following `SignatureInformation`
	// specific properties.
	SignatureInformation *ClientSignatureInformationOptions `json:"signatureInformation,omitzero"`

	// The client supports to send additional context information for a
	// `textDocument/signatureHelp` request. A client that opts into
	// contextSupport will also support the `retriggerCharacters` on
	// `SignatureHelpOptions`.
	//
	// Since: 3.15.0
	ContextSupport *bool `json:"contextSupport,omitzero"`
}

Client Capabilities for a SignatureHelpRequest.

type SignatureHelpContext

type SignatureHelpContext struct {
	// Action that caused signature help to be triggered.
	TriggerKind SignatureHelpTriggerKind `json:"triggerKind"`

	// Character that caused signature help to be triggered.
	//
	// This is undefined when `triggerKind !== SignatureHelpTriggerKind.TriggerCharacter`
	TriggerCharacter *string `json:"triggerCharacter,omitzero"`

	// `true` if signature help was already showing when it was triggered.
	//
	// Retriggers occurs when the signature help is already active and can be caused by actions such as
	// typing a trigger character, a cursor move, or document content changes.
	IsRetrigger bool `json:"isRetrigger"`

	// The currently active `SignatureHelp`.
	//
	// The `activeSignatureHelp` has its `SignatureHelp.activeSignature` field updated based on
	// the user navigating through available signatures.
	ActiveSignatureHelp *SignatureHelp `json:"activeSignatureHelp,omitzero"`
}

Additional information about the context in which a signature help request was triggered.

Since: 3.15.0

func (*SignatureHelpContext) UnmarshalJSONFrom

func (s *SignatureHelpContext) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SignatureHelpOptions

type SignatureHelpOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// List of characters that trigger signature help automatically.
	TriggerCharacters *[]string `json:"triggerCharacters,omitzero"`

	// List of characters that re-trigger signature help.
	//
	// These trigger characters are only active when signature help is already showing. All trigger characters
	// are also counted as re-trigger characters.
	//
	// Since: 3.15.0
	RetriggerCharacters *[]string `json:"retriggerCharacters,omitzero"`
}

Server Capabilities for a SignatureHelpRequest.

type SignatureHelpOrNull

type SignatureHelpOrNull struct {
	SignatureHelp *SignatureHelp
}

func (*SignatureHelpOrNull) MarshalJSONTo

func (o *SignatureHelpOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*SignatureHelpOrNull) UnmarshalJSONFrom

func (o *SignatureHelpOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SignatureHelpParams

type SignatureHelpParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// The signature help context. This is only available if the client specifies
	// to send this using the client capability `textDocument.signatureHelp.contextSupport === true`
	//
	// Since: 3.15.0
	Context *SignatureHelpContext `json:"context,omitzero"`
}

Parameters for a SignatureHelpRequest.

func (*SignatureHelpParams) TextDocumentURI

func (s *SignatureHelpParams) TextDocumentURI() DocumentUri

func (*SignatureHelpParams) UnmarshalJSONFrom

func (s *SignatureHelpParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SignatureHelpRegistrationOptions

type SignatureHelpRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// List of characters that trigger signature help automatically.
	TriggerCharacters *[]string `json:"triggerCharacters,omitzero"`

	// List of characters that re-trigger signature help.
	//
	// These trigger characters are only active when signature help is already showing. All trigger characters
	// are also counted as re-trigger characters.
	//
	// Since: 3.15.0
	RetriggerCharacters *[]string `json:"retriggerCharacters,omitzero"`
}

Registration options for a SignatureHelpRequest.

func (*SignatureHelpRegistrationOptions) UnmarshalJSONFrom

func (s *SignatureHelpRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SignatureHelpResponse

type SignatureHelpResponse = SignatureHelpOrNull

Response type for `textDocument/signatureHelp`

type SignatureHelpTriggerKind

type SignatureHelpTriggerKind uint32

How a signature help was triggered.

Since: 3.15.0

const (
	// Signature help was invoked manually by the user or by a command.
	SignatureHelpTriggerKindInvoked SignatureHelpTriggerKind = 1
	// Signature help was triggered by a trigger character.
	SignatureHelpTriggerKindTriggerCharacter SignatureHelpTriggerKind = 2
	// Signature help was triggered by the cursor moving or by the document content changing.
	SignatureHelpTriggerKindContentChange SignatureHelpTriggerKind = 3
)

type SignatureInformation

type SignatureInformation struct {
	// The label of this signature. Will be shown in
	// the UI.
	Label string `json:"label"`

	// The human-readable doc-comment of this signature. Will be shown
	// in the UI but can be omitted.
	Documentation *StringOrMarkupContent `json:"documentation,omitzero"`

	// The parameters of this signature.
	Parameters *[]*ParameterInformation `json:"parameters,omitzero"`

	// The index of the active parameter.
	//
	// If `null`, no parameter of the signature is active (for example a named
	// argument that does not match any declared parameters). This is only valid
	// if the client specifies the client capability
	// `textDocument.signatureHelp.noActiveParameterSupport === true`
	//
	// If provided (or `null`), this is used in place of
	// `SignatureHelp.activeParameter`.
	//
	// Since: 3.16.0
	ActiveParameter *UintegerOrNull `json:"activeParameter,omitzero"`
}

Represents the signature of something callable. A signature can have a label, like a function-name, a doc-comment, and a set of parameters.

func (*SignatureInformation) UnmarshalJSONFrom

func (s *SignatureInformation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SnippetTextEdit

type SnippetTextEdit struct {
	// The range of the text document to be manipulated.
	Range Range `json:"range"`

	// The snippet to be inserted.
	Snippet *StringValue `json:"snippet"`

	// The actual identifier of the snippet edit.
	AnnotationId *string `json:"annotationId,omitzero"`
}

An interactive text edit.

Since: 3.18.0

Proposed.

func (*SnippetTextEdit) UnmarshalJSONFrom

func (s *SnippetTextEdit) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StaleRequestSupportOptions

type StaleRequestSupportOptions struct {
	// The client will actively cancel the request.
	Cancel bool `json:"cancel"`

	// The list of requests for which the client
	// will retry the request if it receives a
	// response with error code `ContentModified`
	RetryOnContentModified []string `json:"retryOnContentModified"`
}

Since: 3.18.0

func (*StaleRequestSupportOptions) UnmarshalJSONFrom

func (s *StaleRequestSupportOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StaticRegistrationOptions

type StaticRegistrationOptions struct {
	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Static registration options to be returned in the initialize request.

type StringLiteralBegin

type StringLiteralBegin struct{}

StringLiteralBegin is a literal type for "begin"

func (StringLiteralBegin) MarshalJSONTo

func (o StringLiteralBegin) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringLiteralBegin) UnmarshalJSONFrom

func (o *StringLiteralBegin) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringLiteralCreate

type StringLiteralCreate struct{}

StringLiteralCreate is a literal type for "create"

func (StringLiteralCreate) MarshalJSONTo

func (o StringLiteralCreate) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringLiteralCreate) UnmarshalJSONFrom

func (o *StringLiteralCreate) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringLiteralDelete

type StringLiteralDelete struct{}

StringLiteralDelete is a literal type for "delete"

func (StringLiteralDelete) MarshalJSONTo

func (o StringLiteralDelete) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringLiteralDelete) UnmarshalJSONFrom

func (o *StringLiteralDelete) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringLiteralEnd

type StringLiteralEnd struct{}

StringLiteralEnd is a literal type for "end"

func (StringLiteralEnd) MarshalJSONTo

func (o StringLiteralEnd) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringLiteralEnd) UnmarshalJSONFrom

func (o *StringLiteralEnd) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringLiteralFull

type StringLiteralFull struct{}

StringLiteralFull is a literal type for "full"

func (StringLiteralFull) MarshalJSONTo

func (o StringLiteralFull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringLiteralFull) UnmarshalJSONFrom

func (o *StringLiteralFull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringLiteralRename

type StringLiteralRename struct{}

StringLiteralRename is a literal type for "rename"

func (StringLiteralRename) MarshalJSONTo

func (o StringLiteralRename) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringLiteralRename) UnmarshalJSONFrom

func (o *StringLiteralRename) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringLiteralReport

type StringLiteralReport struct{}

StringLiteralReport is a literal type for "report"

func (StringLiteralReport) MarshalJSONTo

func (o StringLiteralReport) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringLiteralReport) UnmarshalJSONFrom

func (o *StringLiteralReport) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringLiteralSnippet

type StringLiteralSnippet struct{}

StringLiteralSnippet is a literal type for "snippet"

func (StringLiteralSnippet) MarshalJSONTo

func (o StringLiteralSnippet) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringLiteralSnippet) UnmarshalJSONFrom

func (o *StringLiteralSnippet) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringLiteralUnchanged

type StringLiteralUnchanged struct{}

StringLiteralUnchanged is a literal type for "unchanged"

func (StringLiteralUnchanged) MarshalJSONTo

func (o StringLiteralUnchanged) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringLiteralUnchanged) UnmarshalJSONFrom

func (o *StringLiteralUnchanged) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringOrBoolean

type StringOrBoolean struct {
	String  *string
	Boolean *bool
}

func (*StringOrBoolean) MarshalJSONTo

func (o *StringOrBoolean) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringOrBoolean) UnmarshalJSONFrom

func (o *StringOrBoolean) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringOrInlayHintLabelParts

type StringOrInlayHintLabelParts struct {
	String              *string
	InlayHintLabelParts *[]*InlayHintLabelPart
}

func (*StringOrInlayHintLabelParts) MarshalJSONTo

func (o *StringOrInlayHintLabelParts) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringOrInlayHintLabelParts) UnmarshalJSONFrom

func (o *StringOrInlayHintLabelParts) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringOrMarkedStringWithLanguage

type StringOrMarkedStringWithLanguage struct {
	String                   *string
	MarkedStringWithLanguage *MarkedStringWithLanguage
}

func (*StringOrMarkedStringWithLanguage) MarshalJSONTo

func (o *StringOrMarkedStringWithLanguage) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringOrMarkedStringWithLanguage) UnmarshalJSONFrom

func (o *StringOrMarkedStringWithLanguage) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringOrMarkupContent

type StringOrMarkupContent struct {
	String        *string
	MarkupContent *MarkupContent
}

func (*StringOrMarkupContent) MarshalJSONTo

func (o *StringOrMarkupContent) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringOrMarkupContent) UnmarshalJSONFrom

func (o *StringOrMarkupContent) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringOrNotebookDocumentFilterNotebookTypeOrNotebookDocumentFilterSchemeOrNotebookDocumentFilterPattern

type StringOrNotebookDocumentFilterNotebookTypeOrNotebookDocumentFilterSchemeOrNotebookDocumentFilterPattern struct {
	String                             *string
	NotebookDocumentFilterNotebookType *NotebookDocumentFilterNotebookType
	NotebookDocumentFilterScheme       *NotebookDocumentFilterScheme
	NotebookDocumentFilterPattern      *NotebookDocumentFilterPattern
}

func (*StringOrNotebookDocumentFilterNotebookTypeOrNotebookDocumentFilterSchemeOrNotebookDocumentFilterPattern) MarshalJSONTo

func (*StringOrNotebookDocumentFilterNotebookTypeOrNotebookDocumentFilterSchemeOrNotebookDocumentFilterPattern) UnmarshalJSONFrom

type StringOrNull

type StringOrNull struct {
	String *string
}

func (*StringOrNull) MarshalJSONTo

func (o *StringOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringOrNull) UnmarshalJSONFrom

func (o *StringOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringOrStringValue

type StringOrStringValue struct {
	String      *string
	StringValue *StringValue
}

func (*StringOrStringValue) MarshalJSONTo

func (o *StringOrStringValue) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringOrStringValue) UnmarshalJSONFrom

func (o *StringOrStringValue) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringOrStrings

type StringOrStrings struct {
	String  *string
	Strings *[]string
}

func (*StringOrStrings) MarshalJSONTo

func (o *StringOrStrings) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringOrStrings) UnmarshalJSONFrom

func (o *StringOrStrings) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringOrTuple

type StringOrTuple struct {
	String *string
	Tuple  *[2]uint32
}

func (*StringOrTuple) MarshalJSONTo

func (o *StringOrTuple) MarshalJSONTo(enc *jsontext.Encoder) error

func (*StringOrTuple) UnmarshalJSONFrom

func (o *StringOrTuple) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type StringValue

type StringValue struct {
	// The kind of string value.
	Kind StringLiteralSnippet `json:"kind"`

	// The snippet string.
	Value string `json:"value"`
}

A string value used as a snippet is a template which allows to insert text and to control the editor cursor when insertion happens.

A snippet can define tab stops and placeholders with `$1`, `$2` and `${3:foo}`. `$0` defines the final tab stop, it defaults to the end of the snippet. Variables are defined with `$name` and `${name:default value}`.

Since: 3.18.0

Proposed.

func (*StringValue) UnmarshalJSONFrom

func (s *StringValue) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SymbolInformation

type SymbolInformation struct {
	// The name of this symbol.
	Name string `json:"name"`

	// The kind of this symbol.
	Kind SymbolKind `json:"kind"`

	// Tags for this symbol.
	//
	// Since: 3.16.0
	Tags *[]SymbolTag `json:"tags,omitzero"`

	// The name of the symbol containing this symbol. This information is for
	// user interface purposes (e.g. to render a qualifier in the user interface
	// if necessary). It can't be used to re-infer a hierarchy for the document
	// symbols.
	ContainerName *string `json:"containerName,omitzero"`

	// Indicates if this symbol is deprecated.
	//
	// Deprecated: Use tags instead
	Deprecated *bool `json:"deprecated,omitzero"`

	// The location of this symbol. The location's range is used by a tool
	// to reveal the location in the editor. If the symbol is selected in the
	// tool the range's start information is used to position the cursor. So
	// the range usually spans more than the actual symbol's name and does
	// normally include things like visibility modifiers.
	//
	// The range doesn't have to denote a node range in the sense of an abstract
	// syntax tree. It can therefore not be used to re-construct a hierarchy of
	// the symbols.
	Location Location `json:"location"`
}

Represents information about programming constructs like variables, classes, interfaces etc.

func (*SymbolInformation) UnmarshalJSONFrom

func (s *SymbolInformation) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type SymbolInformationsOrDocumentSymbolsOrNull

type SymbolInformationsOrDocumentSymbolsOrNull struct {
	SymbolInformations *[]*SymbolInformation
	DocumentSymbols    *[]*DocumentSymbol
}

func (*SymbolInformationsOrDocumentSymbolsOrNull) MarshalJSONTo

func (*SymbolInformationsOrDocumentSymbolsOrNull) UnmarshalJSONFrom

type SymbolInformationsOrWorkspaceSymbolsOrNull

type SymbolInformationsOrWorkspaceSymbolsOrNull struct {
	SymbolInformations *[]*SymbolInformation
	WorkspaceSymbols   *[]*WorkspaceSymbol
}

func (*SymbolInformationsOrWorkspaceSymbolsOrNull) MarshalJSONTo

func (*SymbolInformationsOrWorkspaceSymbolsOrNull) UnmarshalJSONFrom

type SymbolKind

type SymbolKind uint32

A symbol kind.

const (
	SymbolKindFile          SymbolKind = 1
	SymbolKindModule        SymbolKind = 2
	SymbolKindNamespace     SymbolKind = 3
	SymbolKindPackage       SymbolKind = 4
	SymbolKindClass         SymbolKind = 5
	SymbolKindMethod        SymbolKind = 6
	SymbolKindProperty      SymbolKind = 7
	SymbolKindField         SymbolKind = 8
	SymbolKindConstructor   SymbolKind = 9
	SymbolKindEnum          SymbolKind = 10
	SymbolKindInterface     SymbolKind = 11
	SymbolKindFunction      SymbolKind = 12
	SymbolKindVariable      SymbolKind = 13
	SymbolKindConstant      SymbolKind = 14
	SymbolKindString        SymbolKind = 15
	SymbolKindNumber        SymbolKind = 16
	SymbolKindBoolean       SymbolKind = 17
	SymbolKindArray         SymbolKind = 18
	SymbolKindObject        SymbolKind = 19
	SymbolKindKey           SymbolKind = 20
	SymbolKindNull          SymbolKind = 21
	SymbolKindEnumMember    SymbolKind = 22
	SymbolKindStruct        SymbolKind = 23
	SymbolKindEvent         SymbolKind = 24
	SymbolKindOperator      SymbolKind = 25
	SymbolKindTypeParameter SymbolKind = 26
)

type SymbolTag

type SymbolTag uint32

Symbol tags are extra annotations that tweak the rendering of a symbol.

Since: 3.16

const (
	// Render a symbol as obsolete, usually using a strike-out.
	SymbolTagDeprecated SymbolTag = 1
)

type TextDocumentChangeRegistrationOptions

type TextDocumentChangeRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	// How documents are synced to the server.
	SyncKind TextDocumentSyncKind `json:"syncKind"`
}

Describe options to be used when registered for text document change events.

func (*TextDocumentChangeRegistrationOptions) UnmarshalJSONFrom

func (s *TextDocumentChangeRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentClientCapabilities

type TextDocumentClientCapabilities struct {
	// Defines which synchronization capabilities the client supports.
	Synchronization *TextDocumentSyncClientCapabilities `json:"synchronization,omitzero"`

	// Defines which filters the client supports.
	//
	// Since: 3.18.0
	Filters *TextDocumentFilterClientCapabilities `json:"filters,omitzero"`

	// Capabilities specific to the `textDocument/completion` request.
	Completion *CompletionClientCapabilities `json:"completion,omitzero"`

	// Capabilities specific to the `textDocument/hover` request.
	Hover *HoverClientCapabilities `json:"hover,omitzero"`

	// Capabilities specific to the `textDocument/signatureHelp` request.
	SignatureHelp *SignatureHelpClientCapabilities `json:"signatureHelp,omitzero"`

	// Capabilities specific to the `textDocument/declaration` request.
	//
	// Since: 3.14.0
	Declaration *DeclarationClientCapabilities `json:"declaration,omitzero"`

	// Capabilities specific to the `textDocument/definition` request.
	Definition *DefinitionClientCapabilities `json:"definition,omitzero"`

	// Capabilities specific to the `textDocument/typeDefinition` request.
	//
	// Since: 3.6.0
	TypeDefinition *TypeDefinitionClientCapabilities `json:"typeDefinition,omitzero"`

	// Capabilities specific to the `textDocument/implementation` request.
	//
	// Since: 3.6.0
	Implementation *ImplementationClientCapabilities `json:"implementation,omitzero"`

	// Capabilities specific to the `textDocument/references` request.
	References *ReferenceClientCapabilities `json:"references,omitzero"`

	// Capabilities specific to the `textDocument/documentHighlight` request.
	DocumentHighlight *DocumentHighlightClientCapabilities `json:"documentHighlight,omitzero"`

	// Capabilities specific to the `textDocument/documentSymbol` request.
	DocumentSymbol *DocumentSymbolClientCapabilities `json:"documentSymbol,omitzero"`

	// Capabilities specific to the `textDocument/codeAction` request.
	CodeAction *CodeActionClientCapabilities `json:"codeAction,omitzero"`

	// Capabilities specific to the `textDocument/codeLens` request.
	CodeLens *CodeLensClientCapabilities `json:"codeLens,omitzero"`

	// Capabilities specific to the `textDocument/documentLink` request.
	DocumentLink *DocumentLinkClientCapabilities `json:"documentLink,omitzero"`

	// Capabilities specific to the `textDocument/documentColor` and the
	// `textDocument/colorPresentation` request.
	//
	// Since: 3.6.0
	ColorProvider *DocumentColorClientCapabilities `json:"colorProvider,omitzero"`

	// Capabilities specific to the `textDocument/formatting` request.
	Formatting *DocumentFormattingClientCapabilities `json:"formatting,omitzero"`

	// Capabilities specific to the `textDocument/rangeFormatting` request.
	RangeFormatting *DocumentRangeFormattingClientCapabilities `json:"rangeFormatting,omitzero"`

	// Capabilities specific to the `textDocument/onTypeFormatting` request.
	OnTypeFormatting *DocumentOnTypeFormattingClientCapabilities `json:"onTypeFormatting,omitzero"`

	// Capabilities specific to the `textDocument/rename` request.
	Rename *RenameClientCapabilities `json:"rename,omitzero"`

	// Capabilities specific to the `textDocument/foldingRange` request.
	//
	// Since: 3.10.0
	FoldingRange *FoldingRangeClientCapabilities `json:"foldingRange,omitzero"`

	// Capabilities specific to the `textDocument/selectionRange` request.
	//
	// Since: 3.15.0
	SelectionRange *SelectionRangeClientCapabilities `json:"selectionRange,omitzero"`

	// Capabilities specific to the `textDocument/publishDiagnostics` notification.
	PublishDiagnostics *PublishDiagnosticsClientCapabilities `json:"publishDiagnostics,omitzero"`

	// Capabilities specific to the various call hierarchy requests.
	//
	// Since: 3.16.0
	CallHierarchy *CallHierarchyClientCapabilities `json:"callHierarchy,omitzero"`

	// Capabilities specific to the various semantic token request.
	//
	// Since: 3.16.0
	SemanticTokens *SemanticTokensClientCapabilities `json:"semanticTokens,omitzero"`

	// Capabilities specific to the `textDocument/linkedEditingRange` request.
	//
	// Since: 3.16.0
	LinkedEditingRange *LinkedEditingRangeClientCapabilities `json:"linkedEditingRange,omitzero"`

	// Client capabilities specific to the `textDocument/moniker` request.
	//
	// Since: 3.16.0
	Moniker *MonikerClientCapabilities `json:"moniker,omitzero"`

	// Capabilities specific to the various type hierarchy requests.
	//
	// Since: 3.17.0
	TypeHierarchy *TypeHierarchyClientCapabilities `json:"typeHierarchy,omitzero"`

	// Capabilities specific to the `textDocument/inlineValue` request.
	//
	// Since: 3.17.0
	InlineValue *InlineValueClientCapabilities `json:"inlineValue,omitzero"`

	// Capabilities specific to the `textDocument/inlayHint` request.
	//
	// Since: 3.17.0
	InlayHint *InlayHintClientCapabilities `json:"inlayHint,omitzero"`

	// Capabilities specific to the diagnostic pull model.
	//
	// Since: 3.17.0
	Diagnostic *DiagnosticClientCapabilities `json:"diagnostic,omitzero"`

	// Client capabilities specific to inline completions.
	//
	// Since: 3.18.0
	//
	// Proposed.
	InlineCompletion *InlineCompletionClientCapabilities `json:"inlineCompletion,omitzero"`
}

Text document specific client capabilities.

type TextDocumentContentChangePartial

type TextDocumentContentChangePartial struct {
	// The range of the document that changed.
	Range Range `json:"range"`

	// The optional length of the range that got replaced.
	//
	// Deprecated: use range instead.
	RangeLength *uint32 `json:"rangeLength,omitzero"`

	// The new text for the provided range.
	Text string `json:"text"`
}

Since: 3.18.0

func (*TextDocumentContentChangePartial) UnmarshalJSONFrom

func (s *TextDocumentContentChangePartial) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentContentChangePartialOrWholeDocument

type TextDocumentContentChangePartialOrWholeDocument struct {
	Partial       *TextDocumentContentChangePartial
	WholeDocument *TextDocumentContentChangeWholeDocument
}

func (*TextDocumentContentChangePartialOrWholeDocument) MarshalJSONTo

func (*TextDocumentContentChangePartialOrWholeDocument) UnmarshalJSONFrom

type TextDocumentContentChangeWholeDocument

type TextDocumentContentChangeWholeDocument struct {
	// The new text of the whole document.
	Text string `json:"text"`
}

Since: 3.18.0

func (*TextDocumentContentChangeWholeDocument) UnmarshalJSONFrom

func (s *TextDocumentContentChangeWholeDocument) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentContentClientCapabilities

type TextDocumentContentClientCapabilities struct {
	// Text document content provider supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Client capabilities for a text document content provider.

Since: 3.18.0

Proposed.

type TextDocumentContentOptions

type TextDocumentContentOptions struct {
	// The schemes for which the server provides content.
	Schemes []string `json:"schemes"`
}

Text document content provider options.

Since: 3.18.0

Proposed.

func (*TextDocumentContentOptions) UnmarshalJSONFrom

func (s *TextDocumentContentOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentContentOptionsOrRegistrationOptions

type TextDocumentContentOptionsOrRegistrationOptions struct {
	Options             *TextDocumentContentOptions
	RegistrationOptions *TextDocumentContentRegistrationOptions
}

func (*TextDocumentContentOptionsOrRegistrationOptions) MarshalJSONTo

func (*TextDocumentContentOptionsOrRegistrationOptions) UnmarshalJSONFrom

type TextDocumentContentParams

type TextDocumentContentParams struct {
	// The uri of the text document.
	Uri DocumentUri `json:"uri"`
}

Parameters for the `workspace/textDocumentContent` request.

Since: 3.18.0

Proposed.

func (*TextDocumentContentParams) UnmarshalJSONFrom

func (s *TextDocumentContentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentContentRefreshParams

type TextDocumentContentRefreshParams struct {
	// The uri of the text document to refresh.
	Uri DocumentUri `json:"uri"`
}

Parameters for the `workspace/textDocumentContent/refresh` request.

Since: 3.18.0

Proposed.

func (*TextDocumentContentRefreshParams) UnmarshalJSONFrom

func (s *TextDocumentContentRefreshParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentContentRefreshResponse

type TextDocumentContentRefreshResponse = Null

Response type for `workspace/textDocumentContent/refresh`

type TextDocumentContentRegistrationOptions

type TextDocumentContentRegistrationOptions struct {
	// The schemes for which the server provides content.
	Schemes []string `json:"schemes"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Text document content provider registration options.

Since: 3.18.0

Proposed.

func (*TextDocumentContentRegistrationOptions) UnmarshalJSONFrom

func (s *TextDocumentContentRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentContentResponse

type TextDocumentContentResponse = *TextDocumentContentResult

Response type for `workspace/textDocumentContent`

type TextDocumentContentResult

type TextDocumentContentResult struct {
	// The text content of the text document. Please note, that the content of
	// any subsequent open notifications for the text document might differ
	// from the returned content due to whitespace and line ending
	// normalizations done on the client
	Text string `json:"text"`
}

Result of the `workspace/textDocumentContent` request.

Since: 3.18.0

Proposed.

func (*TextDocumentContentResult) UnmarshalJSONFrom

func (s *TextDocumentContentResult) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentEdit

type TextDocumentEdit struct {
	// The text document to change.
	TextDocument OptionalVersionedTextDocumentIdentifier `json:"textDocument"`

	// The edits to be applied.
	//
	// Since: 3.16.0 - support for AnnotatedTextEdit. This is guarded using a
	// client capability.
	//
	// Since: 3.18.0 - support for SnippetTextEdit. This is guarded using a
	// client capability.
	Edits []TextEditOrAnnotatedTextEditOrSnippetTextEdit `json:"edits"`
}

Describes textual changes on a text document. A TextDocumentEdit describes all changes on a document version Si and after they are applied move the document to version Si+1. So the creator of a TextDocumentEdit doesn't need to sort the array of edits or do any kind of ordering. However the edits must be non overlapping.

func (*TextDocumentEdit) UnmarshalJSONFrom

func (s *TextDocumentEdit) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentEditOrCreateFileOrRenameFileOrDeleteFile

type TextDocumentEditOrCreateFileOrRenameFileOrDeleteFile struct {
	TextDocumentEdit *TextDocumentEdit
	CreateFile       *CreateFile
	RenameFile       *RenameFile
	DeleteFile       *DeleteFile
}

func (*TextDocumentEditOrCreateFileOrRenameFileOrDeleteFile) MarshalJSONTo

func (*TextDocumentEditOrCreateFileOrRenameFileOrDeleteFile) UnmarshalJSONFrom

type TextDocumentFilterClientCapabilities

type TextDocumentFilterClientCapabilities struct {
	// The client supports Relative Patterns.
	//
	// Since: 3.18.0
	RelativePatternSupport *bool `json:"relativePatternSupport,omitzero"`
}

type TextDocumentFilterLanguage

type TextDocumentFilterLanguage struct {
	// A language id, like `typescript`.
	Language string `json:"language"`

	// A Uri scheme, like `file` or `untitled`.
	Scheme *string `json:"scheme,omitzero"`

	// A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples.
	//
	// Since: 3.18.0 - support for relative patterns. Whether clients support
	// relative patterns depends on the client capability
	// `textDocuments.filters.relativePatternSupport`.
	Pattern *PatternOrRelativePattern `json:"pattern,omitzero"`
}

A document filter where `language` is required field.

Since: 3.18.0

func (*TextDocumentFilterLanguage) UnmarshalJSONFrom

func (s *TextDocumentFilterLanguage) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentFilterLanguageOrTextDocumentFilterSchemeOrTextDocumentFilterPatternOrNotebookCellTextDocumentFilter

type TextDocumentFilterLanguageOrTextDocumentFilterSchemeOrTextDocumentFilterPatternOrNotebookCellTextDocumentFilter struct {
	TextDocumentFilterLanguage     *TextDocumentFilterLanguage
	TextDocumentFilterScheme       *TextDocumentFilterScheme
	TextDocumentFilterPattern      *TextDocumentFilterPattern
	NotebookCellTextDocumentFilter *NotebookCellTextDocumentFilter
}

func (*TextDocumentFilterLanguageOrTextDocumentFilterSchemeOrTextDocumentFilterPatternOrNotebookCellTextDocumentFilter) MarshalJSONTo

func (*TextDocumentFilterLanguageOrTextDocumentFilterSchemeOrTextDocumentFilterPatternOrNotebookCellTextDocumentFilter) UnmarshalJSONFrom

type TextDocumentFilterPattern

type TextDocumentFilterPattern struct {
	// A language id, like `typescript`.
	Language *string `json:"language,omitzero"`

	// A Uri scheme, like `file` or `untitled`.
	Scheme *string `json:"scheme,omitzero"`

	// A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples.
	//
	// Since: 3.18.0 - support for relative patterns. Whether clients support
	// relative patterns depends on the client capability
	// `textDocuments.filters.relativePatternSupport`.
	Pattern PatternOrRelativePattern `json:"pattern"`
}

A document filter where `pattern` is required field.

Since: 3.18.0

func (*TextDocumentFilterPattern) UnmarshalJSONFrom

func (s *TextDocumentFilterPattern) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentFilterScheme

type TextDocumentFilterScheme struct {
	// A language id, like `typescript`.
	Language *string `json:"language,omitzero"`

	// A Uri scheme, like `file` or `untitled`.
	Scheme string `json:"scheme"`

	// A glob pattern, like **​/*.{ts,js}. See TextDocumentFilter for examples.
	//
	// Since: 3.18.0 - support for relative patterns. Whether clients support
	// relative patterns depends on the client capability
	// `textDocuments.filters.relativePatternSupport`.
	Pattern *PatternOrRelativePattern `json:"pattern,omitzero"`
}

A document filter where `scheme` is required field.

Since: 3.18.0

func (*TextDocumentFilterScheme) UnmarshalJSONFrom

func (s *TextDocumentFilterScheme) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentIdentifier

type TextDocumentIdentifier struct {
	// The text document's uri.
	Uri DocumentUri `json:"uri"`
}

A literal to identify a text document in the client.

func (*TextDocumentIdentifier) UnmarshalJSONFrom

func (s *TextDocumentIdentifier) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentItem

type TextDocumentItem struct {
	// The text document's uri.
	Uri DocumentUri `json:"uri"`

	// The text document's language identifier.
	LanguageId LanguageKind `json:"languageId"`

	// The version number of this document (it will increase after each
	// change, including undo/redo).
	Version int32 `json:"version"`

	// The content of the opened text document.
	Text string `json:"text"`
}

An item to transfer a text document from the client to the server.

func (*TextDocumentItem) UnmarshalJSONFrom

func (s *TextDocumentItem) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentPositionParams

type TextDocumentPositionParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`
}

A parameter literal used in requests to pass a text document and a position inside that document.

func (*TextDocumentPositionParams) TextDocumentURI

func (s *TextDocumentPositionParams) TextDocumentURI() DocumentUri

func (*TextDocumentPositionParams) UnmarshalJSONFrom

func (s *TextDocumentPositionParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentRegistrationOptions

type TextDocumentRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`
}

General text document registration options.

func (*TextDocumentRegistrationOptions) UnmarshalJSONFrom

func (s *TextDocumentRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentSaveReason

type TextDocumentSaveReason uint32

Represents reasons why a text document is saved.

const (
	// Manually triggered, e.g. by the user pressing save, by starting debugging,
	// or by an API call.
	TextDocumentSaveReasonManual TextDocumentSaveReason = 1
	// Automatic after a delay.
	TextDocumentSaveReasonAfterDelay TextDocumentSaveReason = 2
	// When the editor lost focus.
	TextDocumentSaveReasonFocusOut TextDocumentSaveReason = 3
)

type TextDocumentSaveRegistrationOptions

type TextDocumentSaveRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	// The client is supposed to include the content on save.
	IncludeText *bool `json:"includeText,omitzero"`
}

Save registration options.

func (*TextDocumentSaveRegistrationOptions) UnmarshalJSONFrom

func (s *TextDocumentSaveRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextDocumentSyncClientCapabilities

type TextDocumentSyncClientCapabilities struct {
	// Whether text document synchronization supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client supports sending will save notifications.
	WillSave *bool `json:"willSave,omitzero"`

	// The client supports sending a will save request and
	// waits for a response providing text edits which will
	// be applied to the document before it is saved.
	WillSaveWaitUntil *bool `json:"willSaveWaitUntil,omitzero"`

	// The client supports did save notifications.
	DidSave *bool `json:"didSave,omitzero"`
}

type TextDocumentSyncKind

type TextDocumentSyncKind uint32

Defines how the host (editor) should sync document changes to the language server.

const (
	// Documents should not be synced at all.
	TextDocumentSyncKindNone TextDocumentSyncKind = 0
	// Documents are synced by always sending the full content
	// of the document.
	TextDocumentSyncKindFull TextDocumentSyncKind = 1
	// Documents are synced by sending the full content on open.
	// After that only incremental updates to the document are
	// send.
	TextDocumentSyncKindIncremental TextDocumentSyncKind = 2
)

type TextDocumentSyncOptions

type TextDocumentSyncOptions struct {
	// Open and close notifications are sent to the server. If omitted open close notification should not
	// be sent.
	OpenClose *bool `json:"openClose,omitzero"`

	// Change notifications are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full
	// and TextDocumentSyncKind.Incremental. If omitted it defaults to TextDocumentSyncKind.None.
	Change *TextDocumentSyncKind `json:"change,omitzero"`

	// If present will save notifications are sent to the server. If omitted the notification should not be
	// sent.
	WillSave *bool `json:"willSave,omitzero"`

	// If present will save wait until requests are sent to the server. If omitted the request should not be
	// sent.
	WillSaveWaitUntil *bool `json:"willSaveWaitUntil,omitzero"`

	// If present save notifications are sent to the server. If omitted the notification should not be
	// sent.
	Save *BooleanOrSaveOptions `json:"save,omitzero"`
}

type TextDocumentSyncOptionsOrKind

type TextDocumentSyncOptionsOrKind struct {
	Options *TextDocumentSyncOptions
	Kind    *TextDocumentSyncKind
}

func (*TextDocumentSyncOptionsOrKind) MarshalJSONTo

func (o *TextDocumentSyncOptionsOrKind) MarshalJSONTo(enc *jsontext.Encoder) error

func (*TextDocumentSyncOptionsOrKind) UnmarshalJSONFrom

func (o *TextDocumentSyncOptionsOrKind) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextEdit

type TextEdit struct {
	// The range of the text document to be manipulated. To insert
	// text into a document create a range where start === end.
	Range Range `json:"range"`

	// The string to be inserted. For delete operations use an
	// empty string.
	NewText string `json:"newText"`
}

A text edit applicable to a text document.

func (*TextEdit) UnmarshalJSONFrom

func (s *TextEdit) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextEditOrAnnotatedTextEditOrSnippetTextEdit

type TextEditOrAnnotatedTextEditOrSnippetTextEdit struct {
	TextEdit          *TextEdit
	AnnotatedTextEdit *AnnotatedTextEdit
	SnippetTextEdit   *SnippetTextEdit
}

func (*TextEditOrAnnotatedTextEditOrSnippetTextEdit) MarshalJSONTo

func (*TextEditOrAnnotatedTextEditOrSnippetTextEdit) UnmarshalJSONFrom

type TextEditOrInsertReplaceEdit

type TextEditOrInsertReplaceEdit struct {
	TextEdit          *TextEdit
	InsertReplaceEdit *InsertReplaceEdit
}

func (*TextEditOrInsertReplaceEdit) MarshalJSONTo

func (o *TextEditOrInsertReplaceEdit) MarshalJSONTo(enc *jsontext.Encoder) error

func (*TextEditOrInsertReplaceEdit) UnmarshalJSONFrom

func (o *TextEditOrInsertReplaceEdit) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TextEditsOrNull

type TextEditsOrNull struct {
	TextEdits *[]*TextEdit
}

func (*TextEditsOrNull) MarshalJSONTo

func (o *TextEditsOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*TextEditsOrNull) UnmarshalJSONFrom

func (o *TextEditsOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TokenFormat

type TokenFormat string
const (
	TokenFormatRelative TokenFormat = "relative"
)

type TraceValue

type TraceValue string
const (
	// Turn tracing off.
	TraceValueOff TraceValue = "off"
	// Trace messages only.
	TraceValueMessages TraceValue = "messages"
	// Verbose message tracing.
	TraceValueVerbose TraceValue = "verbose"
)

type TypeDefinitionClientCapabilities

type TypeDefinitionClientCapabilities struct {
	// Whether implementation supports dynamic registration. If this is set to `true`
	// the client supports the new `TypeDefinitionRegistrationOptions` return value
	// for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// The client supports additional metadata in the form of definition links.
	//
	// Since 3.14.0
	LinkSupport *bool `json:"linkSupport,omitzero"`
}

Since 3.6.0

type TypeDefinitionOptions

type TypeDefinitionOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

type TypeDefinitionParams

type TypeDefinitionParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`
}

func (*TypeDefinitionParams) TextDocumentURI

func (s *TypeDefinitionParams) TextDocumentURI() DocumentUri

func (*TypeDefinitionParams) UnmarshalJSONFrom

func (s *TypeDefinitionParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TypeDefinitionRegistrationOptions

type TypeDefinitionRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

func (*TypeDefinitionRegistrationOptions) UnmarshalJSONFrom

func (s *TypeDefinitionRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TypeDefinitionResponse

type TypeDefinitionResponse = LocationOrLocationsOrDefinitionLinksOrNull

Response type for `textDocument/typeDefinition`

type TypeHierarchyClientCapabilities

type TypeHierarchyClientCapabilities struct {
	// Whether implementation supports dynamic registration. If this is set to `true`
	// the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
	// return value for the corresponding server capability as well.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`
}

Since: 3.17.0

type TypeHierarchyItem

type TypeHierarchyItem struct {
	// The name of this item.
	Name string `json:"name"`

	// The kind of this item.
	Kind SymbolKind `json:"kind"`

	// Tags for this item.
	Tags *[]SymbolTag `json:"tags,omitzero"`

	// More detail for this item, e.g. the signature of a function.
	Detail *string `json:"detail,omitzero"`

	// The resource identifier of this item.
	Uri DocumentUri `json:"uri"`

	// The range enclosing this symbol not including leading/trailing whitespace
	// but everything else, e.g. comments and code.
	Range Range `json:"range"`

	// The range that should be selected and revealed when this symbol is being
	// picked, e.g. the name of a function. Must be contained by the
	// `range`.
	SelectionRange Range `json:"selectionRange"`

	// A data entry field that is preserved between a type hierarchy prepare and
	// supertypes or subtypes requests. It could also be used to identify the
	// type hierarchy in the server, helping improve the performance on
	// resolving supertypes and subtypes.
	Data *any `json:"data,omitzero"`
}

Since: 3.17.0

func (*TypeHierarchyItem) UnmarshalJSONFrom

func (s *TypeHierarchyItem) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TypeHierarchyItemsOrNull

type TypeHierarchyItemsOrNull struct {
	TypeHierarchyItems *[]*TypeHierarchyItem
}

func (*TypeHierarchyItemsOrNull) MarshalJSONTo

func (o *TypeHierarchyItemsOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*TypeHierarchyItemsOrNull) UnmarshalJSONFrom

func (o *TypeHierarchyItemsOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TypeHierarchyOptions

type TypeHierarchyOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

Type hierarchy options used during static registration.

Since: 3.17.0

type TypeHierarchyPrepareParams

type TypeHierarchyPrepareParams struct {
	// The text document.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The position inside the text document.
	Position Position `json:"position"`

	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`
}

The parameter of a `textDocument/prepareTypeHierarchy` request.

Since: 3.17.0

func (*TypeHierarchyPrepareParams) TextDocumentURI

func (s *TypeHierarchyPrepareParams) TextDocumentURI() DocumentUri

func (*TypeHierarchyPrepareParams) UnmarshalJSONFrom

func (s *TypeHierarchyPrepareParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TypeHierarchyPrepareResponse

type TypeHierarchyPrepareResponse = TypeHierarchyItemsOrNull

Response type for `textDocument/prepareTypeHierarchy`

type TypeHierarchyRegistrationOptions

type TypeHierarchyRegistrationOptions struct {
	// A document selector to identify the scope of the registration. If set to null
	// the document selector provided on the client side will be used.
	DocumentSelector DocumentSelectorOrNull `json:"documentSelector"`

	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The id used to register the request. The id can be used to deregister
	// the request again. See also Registration#id.
	Id *string `json:"id,omitzero"`
}

Type hierarchy options used during static or dynamic registration.

Since: 3.17.0

func (*TypeHierarchyRegistrationOptions) UnmarshalJSONFrom

func (s *TypeHierarchyRegistrationOptions) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TypeHierarchySubtypesParams

type TypeHierarchySubtypesParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	Item *TypeHierarchyItem `json:"item"`
}

The parameter of a `typeHierarchy/subtypes` request.

Since: 3.17.0

func (*TypeHierarchySubtypesParams) UnmarshalJSONFrom

func (s *TypeHierarchySubtypesParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TypeHierarchySubtypesResponse

type TypeHierarchySubtypesResponse = TypeHierarchyItemsOrNull

Response type for `typeHierarchy/subtypes`

type TypeHierarchySupertypesParams

type TypeHierarchySupertypesParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	Item *TypeHierarchyItem `json:"item"`
}

The parameter of a `typeHierarchy/supertypes` request.

Since: 3.17.0

func (*TypeHierarchySupertypesParams) UnmarshalJSONFrom

func (s *TypeHierarchySupertypesParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type TypeHierarchySupertypesResponse

type TypeHierarchySupertypesResponse = TypeHierarchyItemsOrNull

Response type for `typeHierarchy/supertypes`

type URI

type URI string // !!!

type UintegerOrNull

type UintegerOrNull struct {
	Uinteger *uint32
}

func (*UintegerOrNull) MarshalJSONTo

func (o *UintegerOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*UintegerOrNull) UnmarshalJSONFrom

func (o *UintegerOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type UnchangedDocumentDiagnosticReport

type UnchangedDocumentDiagnosticReport struct {
	// A document diagnostic report indicating
	// no changes to the last result. A server can
	// only return `unchanged` if result ids are
	// provided.
	Kind StringLiteralUnchanged `json:"kind"`

	// A result id which will be sent on the next
	// diagnostic request for the same document.
	ResultId string `json:"resultId"`
}

A diagnostic report indicating that the last returned report is still accurate.

Since: 3.17.0

func (*UnchangedDocumentDiagnosticReport) UnmarshalJSONFrom

func (s *UnchangedDocumentDiagnosticReport) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type UniquenessLevel

type UniquenessLevel string

Moniker uniqueness level to define scope of the moniker.

Since: 3.16.0

const (
	// The moniker is only unique inside a document
	UniquenessLeveldocument UniquenessLevel = "document"
	// The moniker is unique inside a project for which a dump got created
	UniquenessLevelproject UniquenessLevel = "project"
	// The moniker is unique inside the group to which a project belongs
	UniquenessLevelgroup UniquenessLevel = "group"
	// The moniker is unique inside the moniker scheme.
	UniquenessLevelscheme UniquenessLevel = "scheme"
	// The moniker is globally unique
	UniquenessLevelglobal UniquenessLevel = "global"
)

type Unregistration

type Unregistration struct {
	// The id used to unregister the request or notification. Usually an id
	// provided during the register request.
	Id string `json:"id"`

	// The method to unregister for.
	Method string `json:"method"`
}

General parameters to unregister a request or notification.

func (*Unregistration) UnmarshalJSONFrom

func (s *Unregistration) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type UnregistrationParams

type UnregistrationParams struct {
	Unregisterations []*Unregistration `json:"unregisterations"`
}

func (*UnregistrationParams) UnmarshalJSONFrom

func (s *UnregistrationParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type UnregistrationResponse

type UnregistrationResponse = Null

Response type for `client/unregisterCapability`

type VersionedNotebookDocumentIdentifier

type VersionedNotebookDocumentIdentifier struct {
	// The version number of this notebook document.
	Version int32 `json:"version"`

	// The notebook document's uri.
	Uri URI `json:"uri"`
}

A versioned notebook document identifier.

Since: 3.17.0

func (*VersionedNotebookDocumentIdentifier) UnmarshalJSONFrom

func (s *VersionedNotebookDocumentIdentifier) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type VersionedTextDocumentIdentifier

type VersionedTextDocumentIdentifier struct {
	// The text document's uri.
	Uri DocumentUri `json:"uri"`

	// The version number of this document.
	Version int32 `json:"version"`
}

A text document identifier to denote a specific version of a text document.

func (*VersionedTextDocumentIdentifier) UnmarshalJSONFrom

func (s *VersionedTextDocumentIdentifier) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WatchKind

type WatchKind uint32
const (
	// Interested in create events.
	WatchKindCreate WatchKind = 1
	// Interested in change events
	WatchKindChange WatchKind = 2
	// Interested in delete events
	WatchKindDelete WatchKind = 4
)

type WillCreateFilesResponse

type WillCreateFilesResponse = WorkspaceEditOrNull

Response type for `workspace/willCreateFiles`

type WillDeleteFilesResponse

type WillDeleteFilesResponse = WorkspaceEditOrNull

Response type for `workspace/willDeleteFiles`

type WillRenameFilesResponse

type WillRenameFilesResponse = WorkspaceEditOrNull

Response type for `workspace/willRenameFiles`

type WillSaveTextDocumentParams

type WillSaveTextDocumentParams struct {
	// The document that will be saved.
	TextDocument TextDocumentIdentifier `json:"textDocument"`

	// The 'TextDocumentSaveReason'.
	Reason TextDocumentSaveReason `json:"reason"`
}

The parameters sent in a will save text document notification.

func (*WillSaveTextDocumentParams) TextDocumentURI

func (s *WillSaveTextDocumentParams) TextDocumentURI() DocumentUri

func (*WillSaveTextDocumentParams) UnmarshalJSONFrom

func (s *WillSaveTextDocumentParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WillSaveTextDocumentWaitUntilResponse

type WillSaveTextDocumentWaitUntilResponse = TextEditsOrNull

Response type for `textDocument/willSaveWaitUntil`

type WindowClientCapabilities

type WindowClientCapabilities struct {
	// It indicates whether the client supports server initiated
	// progress using the `window/workDoneProgress/create` request.
	//
	// The capability also controls Whether client supports handling
	// of progress notifications. If set servers are allowed to report a
	// `workDoneProgress` property in the request specific server
	// capabilities.
	//
	// Since: 3.15.0
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// Capabilities specific to the showMessage request.
	//
	// Since: 3.16.0
	ShowMessage *ShowMessageRequestClientCapabilities `json:"showMessage,omitzero"`

	// Capabilities specific to the showDocument request.
	//
	// Since: 3.16.0
	ShowDocument *ShowDocumentClientCapabilities `json:"showDocument,omitzero"`
}

type WorkDoneProgressBegin

type WorkDoneProgressBegin struct {
	Kind StringLiteralBegin `json:"kind"`

	// Mandatory title of the progress operation. Used to briefly inform about
	// the kind of operation being performed.
	//
	// Examples: "Indexing" or "Linking dependencies".
	Title string `json:"title"`

	// Controls if a cancel button should show to allow the user to cancel the
	// long running operation. Clients that don't support cancellation are allowed
	// to ignore the setting.
	Cancellable *bool `json:"cancellable,omitzero"`

	// Optional, more detailed associated progress message. Contains
	// complementary information to the `title`.
	//
	// Examples: "3/25 files", "project/src/module2", "node_modules/some_dep".
	// If unset, the previous progress message (if any) is still valid.
	Message *string `json:"message,omitzero"`

	// Optional progress percentage to display (value 100 is considered 100%).
	// If not provided infinite progress is assumed and clients are allowed
	// to ignore the `percentage` value in subsequent in report notifications.
	//
	// The value should be steadily rising. Clients are free to ignore values
	// that are not following this rule. The value range is [0, 100].
	Percentage *uint32 `json:"percentage,omitzero"`
}

func (*WorkDoneProgressBegin) UnmarshalJSONFrom

func (s *WorkDoneProgressBegin) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkDoneProgressCancelParams

type WorkDoneProgressCancelParams struct {
	// The token to be used to report progress.
	Token IntegerOrString `json:"token"`
}

func (*WorkDoneProgressCancelParams) UnmarshalJSONFrom

func (s *WorkDoneProgressCancelParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkDoneProgressCreateParams

type WorkDoneProgressCreateParams struct {
	// The token to be used to report progress.
	Token IntegerOrString `json:"token"`
}

func (*WorkDoneProgressCreateParams) UnmarshalJSONFrom

func (s *WorkDoneProgressCreateParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkDoneProgressCreateResponse

type WorkDoneProgressCreateResponse = Null

Response type for `window/workDoneProgress/create`

type WorkDoneProgressEnd

type WorkDoneProgressEnd struct {
	Kind StringLiteralEnd `json:"kind"`

	// Optional, a final message indicating to for example indicate the outcome
	// of the operation.
	Message *string `json:"message,omitzero"`
}

func (*WorkDoneProgressEnd) UnmarshalJSONFrom

func (s *WorkDoneProgressEnd) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkDoneProgressOptions

type WorkDoneProgressOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`
}

type WorkDoneProgressParams

type WorkDoneProgressParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`
}

type WorkDoneProgressReport

type WorkDoneProgressReport struct {
	Kind StringLiteralReport `json:"kind"`

	// Controls enablement state of a cancel button.
	//
	// Clients that don't support cancellation or don't support controlling the button's
	// enablement state are allowed to ignore the property.
	Cancellable *bool `json:"cancellable,omitzero"`

	// Optional, more detailed associated progress message. Contains
	// complementary information to the `title`.
	//
	// Examples: "3/25 files", "project/src/module2", "node_modules/some_dep".
	// If unset, the previous progress message (if any) is still valid.
	Message *string `json:"message,omitzero"`

	// Optional progress percentage to display (value 100 is considered 100%).
	// If not provided infinite progress is assumed and clients are allowed
	// to ignore the `percentage` value in subsequent in report notifications.
	//
	// The value should be steadily rising. Clients are free to ignore values
	// that are not following this rule. The value range is [0, 100]
	Percentage *uint32 `json:"percentage,omitzero"`
}

func (*WorkDoneProgressReport) UnmarshalJSONFrom

func (s *WorkDoneProgressReport) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceClientCapabilities

type WorkspaceClientCapabilities struct {
	// The client supports applying batch edits
	// to the workspace by supporting the request
	// 'workspace/applyEdit'
	ApplyEdit *bool `json:"applyEdit,omitzero"`

	// Capabilities specific to `WorkspaceEdit`s.
	WorkspaceEdit *WorkspaceEditClientCapabilities `json:"workspaceEdit,omitzero"`

	// Capabilities specific to the `workspace/didChangeConfiguration` notification.
	DidChangeConfiguration *DidChangeConfigurationClientCapabilities `json:"didChangeConfiguration,omitzero"`

	// Capabilities specific to the `workspace/didChangeWatchedFiles` notification.
	DidChangeWatchedFiles *DidChangeWatchedFilesClientCapabilities `json:"didChangeWatchedFiles,omitzero"`

	// Capabilities specific to the `workspace/symbol` request.
	Symbol *WorkspaceSymbolClientCapabilities `json:"symbol,omitzero"`

	// Capabilities specific to the `workspace/executeCommand` request.
	ExecuteCommand *ExecuteCommandClientCapabilities `json:"executeCommand,omitzero"`

	// The client has support for workspace folders.
	//
	// Since: 3.6.0
	WorkspaceFolders *bool `json:"workspaceFolders,omitzero"`

	// The client supports `workspace/configuration` requests.
	//
	// Since: 3.6.0
	Configuration *bool `json:"configuration,omitzero"`

	// Capabilities specific to the semantic token requests scoped to the
	// workspace.
	//
	// Since: 3.16.0.
	SemanticTokens *SemanticTokensWorkspaceClientCapabilities `json:"semanticTokens,omitzero"`

	// Capabilities specific to the code lens requests scoped to the
	// workspace.
	//
	// Since: 3.16.0.
	CodeLens *CodeLensWorkspaceClientCapabilities `json:"codeLens,omitzero"`

	// The client has support for file notifications/requests for user operations on files.
	//
	// Since 3.16.0
	FileOperations *FileOperationClientCapabilities `json:"fileOperations,omitzero"`

	// Capabilities specific to the inline values requests scoped to the
	// workspace.
	//
	// Since: 3.17.0.
	InlineValue *InlineValueWorkspaceClientCapabilities `json:"inlineValue,omitzero"`

	// Capabilities specific to the inlay hint requests scoped to the
	// workspace.
	//
	// Since: 3.17.0.
	InlayHint *InlayHintWorkspaceClientCapabilities `json:"inlayHint,omitzero"`

	// Capabilities specific to the diagnostic requests scoped to the
	// workspace.
	//
	// Since: 3.17.0.
	Diagnostics *DiagnosticWorkspaceClientCapabilities `json:"diagnostics,omitzero"`

	// Capabilities specific to the folding range requests scoped to the workspace.
	//
	// Since: 3.18.0
	//
	// Proposed.
	FoldingRange *FoldingRangeWorkspaceClientCapabilities `json:"foldingRange,omitzero"`

	// Capabilities specific to the `workspace/textDocumentContent` request.
	//
	// Since: 3.18.0
	//
	// Proposed.
	TextDocumentContent *TextDocumentContentClientCapabilities `json:"textDocumentContent,omitzero"`
}

Workspace specific client capabilities.

type WorkspaceDiagnosticParams

type WorkspaceDiagnosticParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// The additional identifier provided during registration.
	Identifier *string `json:"identifier,omitzero"`

	// The currently known diagnostic reports with their
	// previous result ids.
	PreviousResultIds []PreviousResultId `json:"previousResultIds"`
}

Parameters of the workspace diagnostic request.

Since: 3.17.0

func (*WorkspaceDiagnosticParams) UnmarshalJSONFrom

func (s *WorkspaceDiagnosticParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceDiagnosticReport

type WorkspaceDiagnosticReport struct {
	Items []WorkspaceFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport `json:"items"`
}

A workspace diagnostic report.

Since: 3.17.0

func (*WorkspaceDiagnosticReport) UnmarshalJSONFrom

func (s *WorkspaceDiagnosticReport) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceDiagnosticReportPartialResult

type WorkspaceDiagnosticReportPartialResult struct {
	Items []WorkspaceFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport `json:"items"`
}

A partial result for a workspace diagnostic report.

Since: 3.17.0

func (*WorkspaceDiagnosticReportPartialResult) UnmarshalJSONFrom

func (s *WorkspaceDiagnosticReportPartialResult) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceDiagnosticResponse

type WorkspaceDiagnosticResponse = *WorkspaceDiagnosticReport

Response type for `workspace/diagnostic`

type WorkspaceEdit

type WorkspaceEdit struct {
	// Holds changes to existing resources.
	Changes *map[DocumentUri][]*TextEdit `json:"changes,omitzero"`

	// Depending on the client capability `workspace.workspaceEdit.resourceOperations` document changes
	// are either an array of `TextDocumentEdit`s to express changes to n different text documents
	// where each text document edit addresses a specific version of a text document. Or it can contain
	// above `TextDocumentEdit`s mixed with create, rename and delete file / folder operations.
	//
	// Whether a client supports versioned document edits is expressed via
	// `workspace.workspaceEdit.documentChanges` client capability.
	//
	// If a client neither supports `documentChanges` nor `workspace.workspaceEdit.resourceOperations` then
	// only plain `TextEdit`s using the `changes` property are supported.
	DocumentChanges *[]TextDocumentEditOrCreateFileOrRenameFileOrDeleteFile `json:"documentChanges,omitzero"`

	// A map of change annotations that can be referenced in `AnnotatedTextEdit`s or create, rename and
	// delete file / folder operations.
	//
	// Whether clients honor this property depends on the client capability `workspace.changeAnnotationSupport`.
	//
	// Since: 3.16.0
	ChangeAnnotations *map[string]*ChangeAnnotation `json:"changeAnnotations,omitzero"`
}

A workspace edit represents changes to many resources managed in the workspace. The edit should either provide `changes` or `documentChanges`. If documentChanges are present they are preferred over `changes` if the client can handle versioned document edits.

Since version 3.13.0 a workspace edit can contain resource operations as well. If resource operations are present clients need to execute the operations in the order in which they are provided. So a workspace edit for example can consist of the following two changes: (1) a create file a.txt and (2) a text document edit which insert text into file a.txt.

An invalid sequence (e.g. (1) delete file a.txt and (2) insert text into file a.txt) will cause failure of the operation. How the client recovers from the failure is described by the client capability: `workspace.workspaceEdit.failureHandling`

type WorkspaceEditClientCapabilities

type WorkspaceEditClientCapabilities struct {
	// The client supports versioned document changes in `WorkspaceEdit`s
	DocumentChanges *bool `json:"documentChanges,omitzero"`

	// The resource operations the client supports. Clients should at least
	// support 'create', 'rename' and 'delete' files and folders.
	//
	// Since: 3.13.0
	ResourceOperations *[]ResourceOperationKind `json:"resourceOperations,omitzero"`

	// The failure handling strategy of a client if applying the workspace edit
	// fails.
	//
	// Since: 3.13.0
	FailureHandling *FailureHandlingKind `json:"failureHandling,omitzero"`

	// Whether the client normalizes line endings to the client specific
	// setting.
	// If set to `true` the client will normalize line ending characters
	// in a workspace edit to the client-specified new line
	// character.
	//
	// Since: 3.16.0
	NormalizesLineEndings *bool `json:"normalizesLineEndings,omitzero"`

	// Whether the client in general supports change annotations on text edits,
	// create file, rename file and delete file changes.
	//
	// Since: 3.16.0
	ChangeAnnotationSupport *ChangeAnnotationsSupportOptions `json:"changeAnnotationSupport,omitzero"`

	// Whether the client supports `WorkspaceEditMetadata` in `WorkspaceEdit`s.
	//
	// Since: 3.18.0
	//
	// Proposed.
	MetadataSupport *bool `json:"metadataSupport,omitzero"`

	// Whether the client supports snippets as text edits.
	//
	// Since: 3.18.0
	//
	// Proposed.
	SnippetEditSupport *bool `json:"snippetEditSupport,omitzero"`
}

type WorkspaceEditMetadata

type WorkspaceEditMetadata struct {
	// Signal to the editor that this edit is a refactoring.
	IsRefactoring *bool `json:"isRefactoring,omitzero"`
}

Additional data about a workspace edit.

Since: 3.18.0

Proposed.

type WorkspaceEditOrNull

type WorkspaceEditOrNull struct {
	WorkspaceEdit *WorkspaceEdit
}

func (*WorkspaceEditOrNull) MarshalJSONTo

func (o *WorkspaceEditOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*WorkspaceEditOrNull) UnmarshalJSONFrom

func (o *WorkspaceEditOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceFolder

type WorkspaceFolder struct {
	// The associated URI for this workspace folder.
	Uri URI `json:"uri"`

	// The name of the workspace folder. Used to refer to this
	// workspace folder in the user interface.
	Name string `json:"name"`
}

A workspace folder inside a client.

func (*WorkspaceFolder) UnmarshalJSONFrom

func (s *WorkspaceFolder) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceFolderOrURI

type WorkspaceFolderOrURI struct {
	WorkspaceFolder *WorkspaceFolder
	URI             *URI
}

func (*WorkspaceFolderOrURI) MarshalJSONTo

func (o *WorkspaceFolderOrURI) MarshalJSONTo(enc *jsontext.Encoder) error

func (*WorkspaceFolderOrURI) UnmarshalJSONFrom

func (o *WorkspaceFolderOrURI) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceFoldersChangeEvent

type WorkspaceFoldersChangeEvent struct {
	// The array of added workspace folders
	Added []*WorkspaceFolder `json:"added"`

	// The array of the removed workspace folders
	Removed []*WorkspaceFolder `json:"removed"`
}

The workspace folder change event.

func (*WorkspaceFoldersChangeEvent) UnmarshalJSONFrom

func (s *WorkspaceFoldersChangeEvent) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceFoldersInitializeParams

type WorkspaceFoldersInitializeParams struct {
	// The workspace folders configured in the client when the server starts.
	//
	// This property is only available if the client supports workspace folders.
	// It can be `null` if the client supports workspace folders but none are
	// configured.
	//
	// Since: 3.6.0
	WorkspaceFolders *WorkspaceFoldersOrNull `json:"workspaceFolders,omitzero"`
}

type WorkspaceFoldersOrNull

type WorkspaceFoldersOrNull struct {
	WorkspaceFolders *[]*WorkspaceFolder
}

func (*WorkspaceFoldersOrNull) MarshalJSONTo

func (o *WorkspaceFoldersOrNull) MarshalJSONTo(enc *jsontext.Encoder) error

func (*WorkspaceFoldersOrNull) UnmarshalJSONFrom

func (o *WorkspaceFoldersOrNull) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceFoldersResponse

type WorkspaceFoldersResponse = WorkspaceFoldersOrNull

Response type for `workspace/workspaceFolders`

type WorkspaceFoldersServerCapabilities

type WorkspaceFoldersServerCapabilities struct {
	// The server has support for workspace folders
	Supported *bool `json:"supported,omitzero"`

	// Whether the server wants to receive workspace folder
	// change notifications.
	//
	// If a string is provided the string is treated as an ID
	// under which the notification is registered on the client
	// side. The ID can be used to unregister for these events
	// using the `client/unregisterCapability` request.
	ChangeNotifications *StringOrBoolean `json:"changeNotifications,omitzero"`
}

type WorkspaceFullDocumentDiagnosticReport

type WorkspaceFullDocumentDiagnosticReport struct {
	// A full document diagnostic report.
	Kind StringLiteralFull `json:"kind"`

	// An optional result id. If provided it will
	// be sent on the next diagnostic request for the
	// same document.
	ResultId *string `json:"resultId,omitzero"`

	// The actual items.
	Items []*Diagnostic `json:"items"`

	// The URI for which diagnostic information is reported.
	Uri DocumentUri `json:"uri"`

	// The version number for which the diagnostics are reported.
	// If the document is not marked as open `null` can be provided.
	Version IntegerOrNull `json:"version"`
}

A full document diagnostic report for a workspace diagnostic result.

Since: 3.17.0

func (*WorkspaceFullDocumentDiagnosticReport) UnmarshalJSONFrom

func (s *WorkspaceFullDocumentDiagnosticReport) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport

type WorkspaceFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport struct {
	FullDocumentDiagnosticReport      *WorkspaceFullDocumentDiagnosticReport
	UnchangedDocumentDiagnosticReport *WorkspaceUnchangedDocumentDiagnosticReport
}

func (*WorkspaceFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport) MarshalJSONTo

func (*WorkspaceFullDocumentDiagnosticReportOrUnchangedDocumentDiagnosticReport) UnmarshalJSONFrom

type WorkspaceOptions

type WorkspaceOptions struct {
	// The server supports workspace folder.
	//
	// Since: 3.6.0
	WorkspaceFolders *WorkspaceFoldersServerCapabilities `json:"workspaceFolders,omitzero"`

	// The server is interested in notifications/requests for operations on files.
	//
	// Since: 3.16.0
	FileOperations *FileOperationOptions `json:"fileOperations,omitzero"`

	// The server supports the `workspace/textDocumentContent` request.
	//
	// Since: 3.18.0
	//
	// Proposed.
	TextDocumentContent *TextDocumentContentOptionsOrRegistrationOptions `json:"textDocumentContent,omitzero"`
}

Defines workspace specific capabilities of the server.

Since: 3.18.0

type WorkspaceSymbol

type WorkspaceSymbol struct {
	// The name of this symbol.
	Name string `json:"name"`

	// The kind of this symbol.
	Kind SymbolKind `json:"kind"`

	// Tags for this symbol.
	//
	// Since: 3.16.0
	Tags *[]SymbolTag `json:"tags,omitzero"`

	// The name of the symbol containing this symbol. This information is for
	// user interface purposes (e.g. to render a qualifier in the user interface
	// if necessary). It can't be used to re-infer a hierarchy for the document
	// symbols.
	ContainerName *string `json:"containerName,omitzero"`

	// The location of the symbol. Whether a server is allowed to
	// return a location without a range depends on the client
	// capability `workspace.symbol.resolveSupport`.
	//
	// See SymbolInformation#location for more details.
	Location LocationOrLocationUriOnly `json:"location"`

	// A data entry field that is preserved on a workspace symbol between a
	// workspace symbol request and a workspace symbol resolve request.
	Data *any `json:"data,omitzero"`
}

A special workspace symbol that supports locations without a range.

See also SymbolInformation.

Since: 3.17.0

func (*WorkspaceSymbol) UnmarshalJSONFrom

func (s *WorkspaceSymbol) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceSymbolClientCapabilities

type WorkspaceSymbolClientCapabilities struct {
	// Symbol request supports dynamic registration.
	DynamicRegistration *bool `json:"dynamicRegistration,omitzero"`

	// Specific capabilities for the `SymbolKind` in the `workspace/symbol` request.
	SymbolKind *ClientSymbolKindOptions `json:"symbolKind,omitzero"`

	// The client supports tags on `SymbolInformation`.
	// Clients supporting tags have to handle unknown tags gracefully.
	//
	// Since: 3.16.0
	TagSupport *ClientSymbolTagOptions `json:"tagSupport,omitzero"`

	// The client support partial workspace symbols. The client will send the
	// request `workspaceSymbol/resolve` to the server to resolve additional
	// properties.
	//
	// Since: 3.17.0
	ResolveSupport *ClientSymbolResolveOptions `json:"resolveSupport,omitzero"`
}

Client capabilities for a WorkspaceSymbolRequest.

type WorkspaceSymbolOptions

type WorkspaceSymbolOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The server provides support to resolve additional
	// information for a workspace symbol.
	//
	// Since: 3.17.0
	ResolveProvider *bool `json:"resolveProvider,omitzero"`
}

Server capabilities for a WorkspaceSymbolRequest.

type WorkspaceSymbolParams

type WorkspaceSymbolParams struct {
	// An optional token that a server can use to report work done progress.
	WorkDoneToken *IntegerOrString `json:"workDoneToken,omitzero"`

	// An optional token that a server can use to report partial results (e.g. streaming) to
	// the client.
	PartialResultToken *IntegerOrString `json:"partialResultToken,omitzero"`

	// A query string to filter symbols by. Clients may send an empty
	// string here to request all symbols.
	//
	// The `query`-parameter should be interpreted in a *relaxed way* as editors
	// will apply their own highlighting and scoring on the results. A good rule
	// of thumb is to match case-insensitive and to simply check that the
	// characters of *query* appear in their order in a candidate symbol.
	// Servers shouldn't use prefix, substring, or similar strict matching.
	Query string `json:"query"`
}

The parameters of a WorkspaceSymbolRequest.

func (*WorkspaceSymbolParams) UnmarshalJSONFrom

func (s *WorkspaceSymbolParams) UnmarshalJSONFrom(dec *jsontext.Decoder) error

type WorkspaceSymbolRegistrationOptions

type WorkspaceSymbolRegistrationOptions struct {
	WorkDoneProgress *bool `json:"workDoneProgress,omitzero"`

	// The server provides support to resolve additional
	// information for a workspace symbol.
	//
	// Since: 3.17.0
	ResolveProvider *bool `json:"resolveProvider,omitzero"`
}

Registration options for a WorkspaceSymbolRequest.

type WorkspaceSymbolResolveResponse

type WorkspaceSymbolResolveResponse = *WorkspaceSymbol

Response type for `workspaceSymbol/resolve`

type WorkspaceSymbolResponse

type WorkspaceSymbolResponse = SymbolInformationsOrWorkspaceSymbolsOrNull

Response type for `workspace/symbol`

type WorkspaceUnchangedDocumentDiagnosticReport

type WorkspaceUnchangedDocumentDiagnosticReport struct {
	// A document diagnostic report indicating
	// no changes to the last result. A server can
	// only return `unchanged` if result ids are
	// provided.
	Kind StringLiteralUnchanged `json:"kind"`

	// A result id which will be sent on the next
	// diagnostic request for the same document.
	ResultId string `json:"resultId"`

	// The URI for which diagnostic information is reported.
	Uri DocumentUri `json:"uri"`

	// The version number for which the diagnostics are reported.
	// If the document is not marked as open `null` can be provided.
	Version IntegerOrNull `json:"version"`
}

An unchanged document diagnostic report for a workspace diagnostic result.

Since: 3.17.0

func (*WorkspaceUnchangedDocumentDiagnosticReport) UnmarshalJSONFrom

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL