/** * Unresolved item detector * * Identifies code patterns that require LLM assistance to resolve: * - Virtual dispatch (interface methods) * - Taint propagation through collections * - Reflection calls * - Dynamic method invocations */ import type { CallInfo, TypeInfo, DFG, UnresolvedItem } from '../types/index.js'; /** * Detect unresolved items that would benefit from LLM analysis. */ export declare function detectUnresolved(calls: CallInfo[], types: TypeInfo[], dfg: DFG): UnresolvedItem[]; //# sourceMappingURL=unresolved.d.ts.map