(exec: RowExecutionMetadata | undefined)
| 25 | * yet, which is correct: cancel means "don't run this." |
| 26 | */ |
| 27 | export function isExecInFlight(exec: RowExecutionMetadata | undefined): boolean { |
| 28 | if (!exec) return false |
| 29 | const s = exec.status |
| 30 | return s === 'queued' || s === 'running' || s === 'pending' |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * A cell run the user/stop killed. The single source of truth for "do not run / |
no outgoing calls
no test coverage detected