(path: string)
| 289 | } |
| 290 | |
| 291 | private getPendingTaskInfo(path: string): TaskInfo | null { |
| 292 | const taskInfo = this.pendingTaskInfoByPath.get(path); |
| 293 | if (!taskInfo) return null; |
| 294 | |
| 295 | return { |
| 296 | ...taskInfo, |
| 297 | id: taskInfo.id ?? path, |
| 298 | path, |
| 299 | }; |
| 300 | } |
| 301 | |
| 302 | private shouldUsePendingTaskInfo( |
| 303 | pendingTaskInfo: TaskInfo, |
no test coverage detected