()
| 8 | let _db: CodeGraphDB | null = null; |
| 9 | export function setCodeGraphDB(db: CodeGraphDB): void { _db = db; } |
| 10 | export function getCodeGraphDB(): CodeGraphDB | null { return _db; } |
| 11 | |
| 12 | let _indexer: import('./indexer.js').Indexer | null = null; |
| 13 | export function setIndexer(idx: import('./indexer.js').Indexer): void { _indexer = idx; } |
no outgoing calls
no test coverage detected