MCPcopy Create free account
hub / github.com/codag-megalith/codag-visualizer / CallGraphDiff

Interface CallGraphDiff

frontend/src/call-graph-extractor.ts:106–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104 * Compute diff between two call graphs
105 */
106export 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
114export function diffCallGraphs(
115 oldGraph: ExtractedCallGraph,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected