File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed
org.eclipse.lsp4j/src/main/java/org/eclipse/lsp4j Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -10460,10 +10460,31 @@ final class PositionEncodingKind {
1046010460@JsonRpcData
1046110461class DiagnosticCapabilities extends DynamicRegistrationCapabilities {
1046210462 /**
10463- * Whether the clients supports related documents for document diagnostic pulls.
10463+ * Whether the client supports related documents for document diagnostic pulls.
1046410464 */
1046510465 Boolean relatedDocumentSupport
1046610466
10467+ /**
10468+ * Whether the client accepts diagnostics with related information.
10469+ */
10470+ Boolean relatedInformation
10471+
10472+ /**
10473+ * Whether the client supports the {@link Diagnostic#tags} property.
10474+ * Clients supporting tags have to handle unknown tags gracefully.
10475+ */
10476+ DiagnosticsTagSupport tagSupport
10477+
10478+ /**
10479+ * Whether the client supports the {@link Diagnostic#codeDescription} property.
10480+ */
10481+ Boolean codeDescriptionSupport
10482+
10483+ /**
10484+ * Whether the client supports the {@link Diagnostic#data} property.
10485+ */
10486+ Boolean dataSupport
10487+
1046710488 /**
1046810489 * Whether the client supports {@link MarkupContent} in diagnostic messages.
1046910490 * <p >
You can’t perform that action at this time.
0 commit comments