(sessionPath: string)
| 217 | } |
| 218 | |
| 219 | async function hasPersistedSessionFile(sessionPath: string) { |
| 220 | try { |
| 221 | await stat(sessionPath) |
| 222 | return true |
| 223 | } catch { |
| 224 | return false |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | function upsertPersistedThreadSummary({ |
| 229 | runtime, |
no outgoing calls
no test coverage detected