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