Paths explore rendered as full-body ``**` `** —`` source sections, in order.
(text: string)
| 26 | |
| 27 | /** Paths explore rendered as full-body ``**`<path>`** —`` source sections, in order. */ |
| 28 | function sourcedFiles(text: string): string[] { |
| 29 | const out: string[] = []; |
| 30 | for (const line of text.split('\n')) { |
| 31 | const m = line.match(/^\*\*`(.+?)`\*\* —/); |
| 32 | if (m) out.push(m[1].trim()); |
| 33 | } |
| 34 | return out; |
| 35 | } |
| 36 | |
| 37 | describe('codegraph_explore — NL-stopword collision guard', () => { |
| 38 | let testDir: string; |
no outgoing calls
no test coverage detected