Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion org.eclipse.lsp4j/src/main/java/org/eclipse/lsp4j/Protocol.xtend
Original file line number Diff line number Diff line change
Expand Up @@ -10460,10 +10460,31 @@ final class PositionEncodingKind {
@JsonRpcData
class DiagnosticCapabilities extends DynamicRegistrationCapabilities {
/**
* Whether the clients supports related documents for document diagnostic pulls.
* Whether the client supports related documents for document diagnostic pulls.
*/
Boolean relatedDocumentSupport

/**
* Whether the client accepts diagnostics with related information.
*/
Boolean relatedInformation

/**
* Whether the client supports the {@link Diagnostic#tags} property.
* Clients supporting tags have to handle unknown tags gracefully.
*/
DiagnosticsTagSupport tagSupport

/**
* Whether the client supports the {@link Diagnostic#codeDescription} property.
*/
Boolean codeDescriptionSupport

/**
* Whether the client supports the {@link Diagnostic#data} property.
*/
Boolean dataSupport

/**
* Whether the client supports {@link MarkupContent} in diagnostic messages.
* <p>
Expand Down