(threadIds, runId)
| 158 | } |
| 159 | |
| 160 | const hasPendingInterruptInThreads = (threadIds, runId) => { |
| 161 | return [...threadIds].some((id) => hasPendingInterruptForRun(getThreadState(id), runId)) |
| 162 | } |
| 163 | |
| 164 | const clearPendingInterruptForRun = (threadId, runId) => { |
| 165 | const threadState = getThreadState(threadId) |
no test coverage detected