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