struct LSP::Message::PublishDiagnostics
- LSP::Message::PublishDiagnostics
- Struct
- Value
- Object
Overview
Diagnostics notification are sent from the server to the client to signal results of validation runs.
Diagnostics are “owned” by the server so it is the server’s responsibility to clear them if necessary. The following rule is used for VS Code servers that generate diagnostics:
- if a language is single file only (for example HTML) then diagnostics are cleared by the server when the file is closed.
- if a language has a project system (for example C#) diagnostics are not cleared when a file closes. When a project is opened all diagnostics for all files are recomputed (or read from a cache).
When a file changes it is the server’s responsibility to re-compute diagnostics and push them to the client. If the computed set is empty it has to push the empty array to clear former diagnostics. Newly pushed diagnostics always replace previously pushed diagnostics. There is no merging that happens on the client side.
Included Modules
- JSON::Serializable
Defined in:
lsp/message.crConstructors
Class Method Summary
Instance Method Summary
- #jsonrpc : String
- #jsonrpc=(jsonrpc : String)
- #method : String
- #method=(method : String)
- #params : Params
- #params=(params : Params)