()
| 36 | let lastGoodTools: ToolConfig[] | undefined = initialTools; |
| 37 | |
| 38 | const scheduleReload = () => { |
| 39 | if (debounceTimer) { |
| 40 | clearTimeout(debounceTimer); |
| 41 | } |
| 42 | debounceTimer = setTimeout(reload, DEBOUNCE_MS); |
| 43 | }; |
| 44 | |
| 45 | const reload = async () => { |
| 46 | if (isReloading) { |
no outgoing calls
no test coverage detected