(files: string[] | undefined, refFiles?: Set<string>)
| 86 | } |
| 87 | |
| 88 | function fileLinks(files: string[] | undefined, refFiles?: Set<string>): string { |
| 89 | if (!files?.length) return ''; |
| 90 | const shown = files.slice(0, 4).map(f => (refFiles && !refFiles.has(f) ? `+${f}` : f)); |
| 91 | return ` files: ${shown.join(', ')}${files.length > 4 ? ` (+${files.length - 4})` : ''}`; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * A compact chronological timeline of the matched approaches — oldest → newest, so the EVOLUTION |
no test coverage detected