(ctx: { globalState: { get: (key: string) => any; update: (key: string, value: any) => Thenable<void> } })
| 94 | |
| 95 | /** Initialize call graph persistence with extension context */ |
| 96 | export function initCallGraphPersistence(ctx: { globalState: { get: (key: string) => any; update: (key: string, value: any) => Thenable<void> } }): void { |
| 97 | extensionContext = ctx; |
| 98 | loadCallGraphsFromStorage(); |
| 99 | } |
| 100 | |
| 101 | /** Load call graphs from persistent storage */ |
| 102 | function loadCallGraphsFromStorage(): void { |
no test coverage detected