* Get dependents of a file * * @param filePath - Path to the file * @returns Array of file paths that depend on this file
(filePath: string)
| 1696 | * @returns Array of file paths that depend on this file |
| 1697 | */ |
| 1698 | getFileDependents(filePath: string): string[] { |
| 1699 | return this.graphManager.getFileDependents(filePath); |
| 1700 | } |
| 1701 | |
| 1702 | /** |
| 1703 | * Find circular dependencies in the codebase |
no outgoing calls
no test coverage detected