/** * DFG (Data Flow Graph) builder * * Tracks variable definitions and uses for data flow analysis. */ import type { Tree } from 'web-tree-sitter'; import type { DFG, SupportedLanguage } from '../../types/index.js'; import { type NodeCache } from '../parser.js'; /** * Build DFG for all methods in the tree. */ export declare function buildDFG(tree: Tree, cache?: NodeCache, language?: SupportedLanguage): DFG; //# sourceMappingURL=dfg.d.ts.map