File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -1386,6 +1386,22 @@ extension SourceKitLSPServer {
1386
1386
return try await languageService. hover ( req)
1387
1387
}
1388
1388
1389
+ func openGeneratedInterface(
1390
+ document: DocumentURI ,
1391
+ moduleName: String ,
1392
+ groupName: String ? ,
1393
+ symbolUSR symbol: String ? ,
1394
+ workspace: Workspace ,
1395
+ languageService: LanguageService
1396
+ ) async throws -> GeneratedInterfaceDetails ? {
1397
+ return try await languageService. openGeneratedInterface (
1398
+ document: document,
1399
+ moduleName: moduleName,
1400
+ groupName: groupName,
1401
+ symbolUSR: symbol
1402
+ )
1403
+ }
1404
+
1389
1405
/// Handle a workspace/symbol request, returning the SymbolInformation.
1390
1406
/// - returns: An array with SymbolInformation for each matching symbol in the workspace.
1391
1407
func workspaceSymbols( _ req: WorkspaceSymbolsRequest ) async throws -> [ WorkspaceSymbolItem ] ? {
You can’t perform that action at this time.
0 commit comments