@@ -231,9 +231,9 @@ extension ServerConnection {
231231 try await sendRequest ( . completion( params, ClientRequest . NullHandler) )
232232 }
233233
234- public func completeItemResolve( _ params: CompletionItem ) async throws -> CompletionItem {
235- try await sendRequest ( . completionItemResolve( params, ClientRequest . NullHandler) )
236- }
234+ public func completeItemResolve( _ params: CompletionItem ) async throws -> CompletionItem {
235+ try await sendRequest ( . completionItemResolve( params, ClientRequest . NullHandler) )
236+ }
237237
238238 @available ( * , deprecated, renamed: " hover(_:) " )
239239 public func hover( params: TextDocumentPositionParams ) async throws -> HoverResponse {
@@ -263,7 +263,8 @@ extension ServerConnection {
263263 try await declaration ( params)
264264 }
265265
266- public func declaration( _ params: TextDocumentPositionParams ) async throws -> DeclarationResponse
266+ public func declaration( _ params: TextDocumentPositionParams ) async throws
267+ -> DeclarationResponse
267268 {
268269 try await sendRequest ( . declaration( params, ClientRequest . NullHandler) )
269270 }
@@ -273,7 +274,8 @@ extension ServerConnection {
273274 try await definition ( params)
274275 }
275276
276- public func definition( _ params: TextDocumentPositionParams ) async throws -> DefinitionResponse {
277+ public func definition( _ params: TextDocumentPositionParams ) async throws -> DefinitionResponse
278+ {
277279 try await sendRequest ( . definition( params, ClientRequest . NullHandler) )
278280 }
279281
@@ -309,7 +311,8 @@ extension ServerConnection {
309311 try await documentSymbol ( params)
310312 }
311313
312- public func documentSymbol( _ params: DocumentSymbolParams ) async throws -> DocumentSymbolResponse
314+ public func documentSymbol( _ params: DocumentSymbolParams ) async throws
315+ -> DocumentSymbolResponse
313316 {
314317 try await sendRequest ( . documentSymbol( params, ClientRequest . NullHandler) )
315318 }
@@ -557,7 +560,8 @@ extension ServerConnection {
557560 try await executeCommand ( params)
558561 }
559562
560- public func executeCommand( _ params: ExecuteCommandParams ) async throws -> ExecuteCommandResponse
563+ public func executeCommand( _ params: ExecuteCommandParams ) async throws
564+ -> ExecuteCommandResponse
561565 {
562566 try await sendRequest ( . workspaceExecuteCommand( params, ClientRequest . NullHandler) )
563567 }
@@ -659,7 +663,8 @@ extension ServerConnection {
659663 try await selectionRange ( params)
660664 }
661665
662- public func selectionRange( _ params: SelectionRangeParams ) async throws -> SelectionRangeResponse
666+ public func selectionRange( _ params: SelectionRangeParams ) async throws
667+ -> SelectionRangeResponse
663668 {
664669 try await sendRequest ( . selectionRange( params, ClientRequest . NullHandler) )
665670 }
@@ -722,11 +727,14 @@ extension ServerConnection {
722727 try await sendRequest ( . inlayHintResolve( params, ClientRequest . NullHandler) )
723728 }
724729
725- public func typeHierarchySubtypes( _ params: TypeHierarchySubtypesParams ) async throws -> TypeHierarchySubtypesResponse {
730+ public func typeHierarchySubtypes( _ params: TypeHierarchySubtypesParams ) async throws
731+ -> TypeHierarchySubtypesResponse
732+ {
726733 try await sendRequest ( . typeHierarchySubtypes( params, ClientRequest . NullHandler) )
727734 }
728735
729- public func typeHierarchySupertypes( _ params: TypeHierarchySupertypesParams ) async throws -> TypeHierarchySupertypesResponse
736+ public func typeHierarchySupertypes( _ params: TypeHierarchySupertypesParams ) async throws
737+ -> TypeHierarchySupertypesResponse
730738 {
731739 try await sendRequest ( . typeHierarchySupertypes( params, ClientRequest . NullHandler) )
732740 }
0 commit comments