Skip to content

Commit 975286d

Browse files
committed
Update capability definitions to LSP 3.17
1 parent a4c7688 commit 975286d

File tree

7 files changed

+540
-70
lines changed

7 files changed

+540
-70
lines changed

Sources/LanguageServerProtocol/SupportTypes/CodeActionKind.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public struct CodeActionKind: RawRepresentable, Codable, Hashable {
2121
self.rawValue = rawValue
2222
}
2323

24+
/// Empty kind.
25+
public static let empty: CodeActionKind = CodeActionKind(rawValue: "")
26+
2427
/// QuickFix action, such as FixIt.
2528
public static let quickFix: CodeActionKind = CodeActionKind(rawValue: "quickfix")
2629

0 commit comments

Comments
 (0)