* Resolve references in batches to keep memory bounded on large codebases. * Processes chunks of unresolved refs, persisting results after each batch.
(onProgress?: (current: number, total: number) => void)
| 791 | * Processes chunks of unresolved refs, persisting results after each batch. |
| 792 | */ |
| 793 | async resolveReferencesBatched(onProgress?: (current: number, total: number) => void): Promise<ResolutionResult> { |
| 794 | return this.resolver.resolveAndPersistBatched(onProgress); |
| 795 | } |
| 796 | |
| 797 | /** |
| 798 | * Get detected frameworks in the project |
no test coverage detected