(p: string)
| 4037 | opts: { offset?: number; limit?: number; symbolsOnly?: boolean } = {}, |
| 4038 | ): Promise<ToolResult> { |
| 4039 | const normalize = (p: string) => p.replace(/\\/g, '/').replace(/^(?:\.?\/+)+/, '').replace(/\/+$/, ''); |
| 4040 | const wantLower = normalize(fileArg).toLowerCase(); |
| 4041 | const allFiles = cg.getFiles(); |
| 4042 | if (allFiles.length === 0) return this.textResult('No files indexed. Run `codegraph index` first.'); |
no outgoing calls
no test coverage detected