()
| 49 | let binding: Binding | undefined; |
| 50 | let currentToolUseContext: ToolUseContext | undefined; |
| 51 | function tuc(): ToolUseContext { |
| 52 | // Safe: `binding` is only populated when `currentToolUseContext` is set. |
| 53 | // Called only from within `ctx` callbacks, which only fire during dispatch. |
| 54 | return currentToolUseContext!; |
| 55 | } |
| 56 | function formatLockHeld(holder: string): string { |
| 57 | return `Computer use is in use by another Claude session (${holder.slice(0, 8)}…). Wait for that session to finish or run /exit there.`; |
| 58 | } |
no outgoing calls
no test coverage detected