mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
Add BSP request to get the output file paths of a target
This commit is contained in:
@@ -86,7 +86,7 @@ package actor JSONCompilationDatabaseBuildSystem: BuiltInBuildSystem {
|
||||
indexStorePath?.deletingLastPathComponent().appendingPathComponent("IndexDatabase")
|
||||
}
|
||||
|
||||
package nonisolated var supportsPreparation: Bool { false }
|
||||
package nonisolated var supportsPreparationAndOutputPaths: Bool { false }
|
||||
|
||||
package init(
|
||||
configPath: URL,
|
||||
@@ -148,7 +148,13 @@ package actor JSONCompilationDatabaseBuildSystem: BuiltInBuildSystem {
|
||||
}
|
||||
|
||||
package func prepare(request: BuildTargetPrepareRequest) async throws -> VoidResponse {
|
||||
throw PrepareNotSupportedError()
|
||||
throw ResponseError.methodNotFound(BuildTargetPrepareRequest.method)
|
||||
}
|
||||
|
||||
package func buildTargetOutputPaths(
|
||||
request: BuildTargetOutputPathsRequest
|
||||
) async throws -> BuildTargetOutputPathsResponse {
|
||||
throw ResponseError.methodNotFound(BuildTargetOutputPathsRequest.method)
|
||||
}
|
||||
|
||||
package func sourceKitOptions(
|
||||
|
||||
Reference in New Issue
Block a user