symref
Version:
Static code checker for AI code agents (Windsurf, Cline, etc.)
23 lines • 634 B
JavaScript
export class CallGraphAnalyzer {
static async analyze(fromSymbol, toSymbol) {
// TODO: 実際の解析ロジックを実装
const result = {
nodes: [
{
symbol: fromSymbol,
depth: 0,
children: []
},
{
symbol: toSymbol,
depth: 1,
children: []
}
],
entryPoint: fromSymbol,
targetSymbol: toSymbol
};
return result;
}
}
//# sourceMappingURL=call-graph-analyzer.js.map