(output: string)
| 366 | } |
| 367 | |
| 368 | function isErrorOutput(output: string): boolean { |
| 369 | const trimmedOutput = output.trim() |
| 370 | return trimmedOutput.startsWith('Error:') || trimmedOutput.startsWith('Failed ') |
| 371 | } |
| 372 | |
| 373 | /** |
| 374 | * Construct a simple diff view from str_replace replacements. |
no outgoing calls
no test coverage detected