(filePath: string)
| 1300 | const seen = new Set<string>(); |
| 1301 | const localFiles: string[] = []; |
| 1302 | const addLocal = (filePath: string) => { |
| 1303 | const url = pathToFileUrl(filePath); |
| 1304 | if (seen.has(url)) return; |
| 1305 | seen.add(url); |
| 1306 | localFiles.push(url); |
| 1307 | }; |
| 1308 | |
| 1309 | // Explicitly registered files (CLI args + file roots) |
| 1310 | for (const filePath of allowedLocalFiles) addLocal(filePath); |
no test coverage detected
searching dependent graphs…