Skip to content

Commit 70e2798

Browse files
committed
Throw requestNotImplemented if DocumentationLanguageService.signatureHelp is called
1 parent 7271b98 commit 70e2798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/DocumentationLanguageService/DocumentationLanguageService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ package actor DocumentationLanguageService: LanguageService, Sendable {
137137
}
138138

139139
package func signatureHelp(_ req: SignatureHelpRequest) async throws -> SignatureHelp? {
140-
nil
140+
throw ResponseError.requestNotImplemented(SignatureHelpRequest.self)
141141
}
142142

143143
package func hover(_ req: HoverRequest) async throws -> HoverResponse? {

0 commit comments

Comments
 (0)