| 104 | * Compute diff between two call graphs |
| 105 | */ |
| 106 | export interface CallGraphDiff { |
| 107 | addedFunctions: string[]; |
| 108 | removedFunctions: string[]; |
| 109 | modifiedFunctions: string[]; // Functions whose calls changed |
| 110 | addedEdges: { from: string; to: string }[]; |
| 111 | removedEdges: { from: string; to: string }[]; |
| 112 | } |
| 113 | |
| 114 | export function diffCallGraphs( |
| 115 | oldGraph: ExtractedCallGraph, |
nothing calls this directly
no outgoing calls
no test coverage detected