Skip to content

Commit 215a5d5

Browse files
committed
Add missing properties to DiagnosticCapabilities
Closes #925.
1 parent 1095fcf commit 215a5d5

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

org.eclipse.lsp4j/src/main/java/org/eclipse/lsp4j/Protocol.xtend

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9936,10 +9936,31 @@ final class PositionEncodingKind {
99369936
@JsonRpcData
99379937
class 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

0 commit comments

Comments
 (0)