(
message: string,
public readonly partialResults: string[],
)
| 97 | */ |
| 98 | export class RipgrepTimeoutError extends Error { |
| 99 | constructor( |
| 100 | message: string, |
| 101 | public readonly partialResults: string[], |
| 102 | ) { |
| 103 | super(message) |
| 104 | this.name = 'RipgrepTimeoutError' |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | function ripGrepRaw( |
nothing calls this directly
no outgoing calls
no test coverage detected