* Mark a batch as completed. * When all batches complete, analysis state resets and full filtering is applied.
()
| 256 | * When all batches complete, analysis state resets and full filtering is applied. |
| 257 | */ |
| 258 | batchCompleted(): void { |
| 259 | if (this.pendingBatchCount > 0) { |
| 260 | this.pendingBatchCount--; |
| 261 | } |
| 262 | if (this.pendingBatchCount === 0) { |
| 263 | this.analysisInProgress = false; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | /** |
| 268 | * Check if multi-batch analysis is complete. |
no outgoing calls
no test coverage detected