We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1e73f5 commit f6bec67Copy full SHA for f6bec67
Sources/SourceKitLSP/SourceKitLSPServer.swift
@@ -1406,12 +1406,14 @@ extension SourceKitLSPServer {
1406
return try await languageService.completion(req)
1407
}
1408
1409
+ #if canImport(SwiftDocC)
1410
func doccDocumentation(_ req: DoccDocumentationRequest) async throws -> DoccDocumentationResponse {
1411
return try await documentationManager.convertDocumentation(
1412
req.textDocument.uri,
1413
at: req.position
1414
)
1415
1416
+ #endif
1417
1418
func hover(
1419
_ req: HoverRequest,
0 commit comments