(text)
| 394 | } |
| 395 | |
| 396 | function setStatus(text) { |
| 397 | statusEl.textContent = text; |
| 398 | thinkingIndicatorEl.hidden = text !== "Thinking…"; |
| 399 | compactingIndicatorEl.hidden = text !== "Compacting…"; |
| 400 | msgsEl.scrollTop = msgsEl.scrollHeight; |
| 401 | } |
| 402 | |
| 403 | const worker = new Worker("./ifc_worker.js", { type: "module" }); |
| 404 |
no outgoing calls
no test coverage detected