@@ -289,7 +289,7 @@ public struct TextDocumentClientCapabilities: Hashable, Codable, Sendable {
289
289
}
290
290
291
291
/// Capabilities specific to `CompletionItemKind`.
292
- public struct CompletionItemKind : Hashable , Codable , Sendable {
292
+ public struct CompletionItemKindValueSet : Hashable , Codable , Sendable {
293
293
294
294
/// The completion kind values that the client can support.
295
295
///
@@ -310,15 +310,15 @@ public struct TextDocumentClientCapabilities: Hashable, Codable, Sendable {
310
310
311
311
public var completionItem : CompletionItem ? = nil
312
312
313
- public var completionItemKind : CompletionItemKind ? = nil
313
+ public var completionItemKind : CompletionItemKindValueSet ? = nil
314
314
315
315
/// Whether the client supports sending context information in a `textDocument/completion` request.
316
316
public var contextSupport : Bool ? = nil
317
317
318
318
public init (
319
319
dynamicRegistration: Bool ? = nil ,
320
320
completionItem: CompletionItem ? = nil ,
321
- completionItemKind: CompletionItemKind ? = nil ,
321
+ completionItemKind: CompletionItemKindValueSet ? = nil ,
322
322
contextSupport: Bool ? = nil
323
323
) {
324
324
self . dynamicRegistration = dynamicRegistration
@@ -383,7 +383,7 @@ public struct TextDocumentClientCapabilities: Hashable, Codable, Sendable {
383
383
public struct DocumentSymbol : Hashable , Codable , Sendable {
384
384
385
385
/// Capabilities specific to `SymbolKind`.
386
- public struct SymbolKind : Hashable , Codable , Sendable {
386
+ public struct SymbolKindValueSet : Hashable , Codable , Sendable {
387
387
388
388
/// The symbol kind values that the client can support.
389
389
///
@@ -400,13 +400,13 @@ public struct TextDocumentClientCapabilities: Hashable, Codable, Sendable {
400
400
/// Whether the client supports dynamic registration of this request.
401
401
public var dynamicRegistration : Bool ? = nil
402
402
403
- public var symbolKind : SymbolKind ? = nil
403
+ public var symbolKind : SymbolKindValueSet ? = nil
404
404
405
405
public var hierarchicalDocumentSymbolSupport : Bool ? = nil
406
406
407
407
public init (
408
408
dynamicRegistration: Bool ? = nil ,
409
- symbolKind: SymbolKind ? = nil ,
409
+ symbolKind: SymbolKindValueSet ? = nil ,
410
410
hierarchicalDocumentSymbolSupport: Bool ? = nil
411
411
) {
412
412
self . dynamicRegistration = dynamicRegistration
0 commit comments