(targetPath: string)
| 93 | } |
| 94 | |
| 95 | async function fileExists(targetPath: string): Promise<boolean> { |
| 96 | try { |
| 97 | const stat = await fs.stat(targetPath); |
| 98 | return stat.isFile(); |
| 99 | } catch { |
| 100 | return false; |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | export async function findSymbolReferences( |
| 105 | rootPath: string, |
no outgoing calls
no test coverage detected