(file: string)
| 597 | return ws ? [...new Set(ws.byName.values())].sort((a, b) => b.length - a.length) : []; |
| 598 | })(); |
| 599 | const moduleScopeOf = (file: string): string => { |
| 600 | for (const dir of moduleDirs) { |
| 601 | if (file === dir || file.startsWith(dir + '/')) return dir; |
| 602 | } |
| 603 | return ''; |
| 604 | }; |
| 605 | |
| 606 | for (const file of ctx.getAllFiles()) { |
| 607 | if ((++scannedFiles & 15) === 0) await onYield(); |
no outgoing calls
no test coverage detected