(s: string)
| 4300 | // async render go silent). |
| 4301 | const gen = editorGenRef.current; |
| 4302 | const setStatus = (s: string): void => { |
| 4303 | if (gen !== editorGenRef.current) return; |
| 4304 | clearTimeout(editorTimerRef.current); |
| 4305 | setEditorStatus(s); |
| 4306 | }; |
| 4307 | setStatus(`rendering ${deferredMessages.length} messages…`); |
| 4308 | void (async () => { |
| 4309 | try { |
no outgoing calls
no test coverage detected