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