(repoPath: string, files: FileRecord[])
| 362 | } |
| 363 | |
| 364 | async function determineTextStatus(repoPath: string, files: FileRecord[]): Promise<FileRecord[]> { |
| 365 | return async.mapLimit(files, TEXT_DETECTION_CONCURRENCY, async (file: FileRecord) => |
| 366 | determineTextStatusForFile(repoPath, file), |
| 367 | ); |
| 368 | } |
| 369 | |
| 370 | async function generatePatchForFile( |
| 371 | repoPath: string, |
no test coverage detected
searching dependent graphs…