UNPKG

symref

Version:

Static code checker for AI code agents (Windsurf, Cline, etc.)

35 lines 988 B
/** * シンボル間の呼び出し経路を分析するコマンド */ export declare class TraceCommand { /** * シンボル文字列をパースする * @param input 入力文字列 * @returns パースされたシンボル情報 */ private static parseSymbol; /** * コマンドを実行する * @param args 開始シンボルと終了シンボル * @param options コマンドオプション */ static execute(args: { from: string; to: string; }, options: any): void; /** * 分析結果を表示 * @param result 分析結果 * @param fromSymbol 開始シンボル * @param toSymbol 終了シンボル */ private static displayResult; /** * Mermaidファイルを生成 * @param result 分析結果 * @param outputPath 出力パス */ private static generateMermaidFile; private formatCallGraph; } //# sourceMappingURL=TraceCommand.d.ts.map