* Invoke a dynamic xcode-ide bridge tool through the daemon-managed bridge session.
(
remoteTool: string,
args: Record<string, unknown>,
)
| 306 | * Invoke a dynamic xcode-ide bridge tool through the daemon-managed bridge session. |
| 307 | */ |
| 308 | async invokeXcodeIdeTool( |
| 309 | remoteTool: string, |
| 310 | args: Record<string, unknown>, |
| 311 | ): Promise<DaemonToolResult> { |
| 312 | const result = await this.request<XcodeIdeInvokeResult>('xcode-ide.invoke', { |
| 313 | remoteTool, |
| 314 | args, |
| 315 | } satisfies XcodeIdeInvokeParams); |
| 316 | return result.result; |
| 317 | } |
| 318 | |
| 319 | /** |
| 320 | * Check if daemon is running by attempting to connect. |
no outgoing calls
no test coverage detected