(filePath: string, graph: ExtractedCallGraph)
| 141 | } |
| 142 | |
| 143 | export function setCachedCallGraph(filePath: string, graph: ExtractedCallGraph): void { |
| 144 | cachedCallGraphs.set(filePath, graph); |
| 145 | saveCallGraphsToStorage(); |
| 146 | } |
| 147 | |
| 148 | export function hasCachedCallGraph(filePath: string): boolean { |
| 149 | return cachedCallGraphs.has(filePath); |
no test coverage detected