* Track exports from a file
(filePath: string, fileExports: FileExport[])
| 731 | * Track exports from a file |
| 732 | */ |
| 733 | trackExports(filePath: string, fileExports: FileExport[]): void { |
| 734 | const normalized = this.normalizePath(filePath); |
| 735 | this.exports.set(normalized, fileExports); |
| 736 | } |
| 737 | |
| 738 | /** |
| 739 | * Find all circular dependencies in the graph using DFS with recursion stack. |
no test coverage detected