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

Interface ExtractedCallGraph

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

Source from the content-addressed store, hash-verified

24}
25
26export interface ExtractedCallGraph {
27 filePath: string;
28 functions: Map<string, FunctionInfo>; // function name → info
29 callGraph: Map<string, string[]>; // function → functions it calls
30 llmCalls: Map<string, CallInfo[]>; // function → LLM calls within it
31 imports: string[];
32 hash: string; // Structural hash for change detection
33}
34
35/**
36 * Create a structural hash for change detection.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected