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 @@ -9936,10 +9936,31 @@ final class PositionEncodingKind {
99369936@JsonRpcData
99379937class DiagnosticCapabilities extends DynamicRegistrationCapabilities {
99389938 /**
9939- * Whether the clients supports related documents for document diagnostic pulls.
9939+ * Whether the client supports related documents for document diagnostic pulls.
99409940 */
99419941 Boolean relatedDocumentSupport
99429942
9943+ /**
9944+ * Whether the client accepts diagnostics with related information.
9945+ */
9946+ Boolean relatedInformation
9947+
9948+ /**
9949+ * Whether the client supports the {@link Diagnostic#tags} property.
9950+ * Clients supporting tags have to handle unknown tags gracefully.
9951+ */
9952+ DiagnosticsTagSupport tagSupport
9953+
9954+ /**
9955+ * Whether the client supports the {@link Diagnostic#codeDescription} property.
9956+ */
9957+ Boolean codeDescriptionSupport
9958+
9959+ /**
9960+ * Whether the client supports the {@link Diagnostic#data} property.
9961+ */
9962+ Boolean dataSupport
9963+
99439964 new () {
99449965 }
99459966
You can’t perform that action at this time.
0 commit comments