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 {
13861386 return try await languageService. hover ( req)
13871387 }
13881388
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+
13891405 /// Handle a workspace/symbol request, returning the SymbolInformation.
13901406 /// - returns: An array with SymbolInformation for each matching symbol in the workspace.
13911407 func workspaceSymbols( _ req: WorkspaceSymbolsRequest ) async throws -> [ WorkspaceSymbolItem ] ? {
You can’t perform that action at this time.
0 commit comments