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 e840728 commit 4d065deCopy full SHA for 4d065de
Sources/SourceKitLSP/SourceKitLSPServer.swift
@@ -519,7 +519,8 @@ package actor SourceKitLSPServer {
519
syncKind = .incremental
520
}
521
guard syncKind == .incremental else {
522
- fatalError("non-incremental update not implemented")
+ logger.error("Received non-incremental update request, which is not implemented")
523
+ throw ResponseError.internalError("non-incremental update not implemented")
524
525
526
await service.clientInitialized(InitializedNotification())
0 commit comments