()
| 463 | stderrBuffer = drainLines(stderrBuffer, chunk); |
| 464 | }, |
| 465 | flush(): void { |
| 466 | if (stdoutBuffer.trim()) { |
| 467 | processLine(stdoutBuffer); |
| 468 | } |
| 469 | if (stderrBuffer.trim()) { |
| 470 | processLine(stderrBuffer); |
| 471 | } |
| 472 | flushQueuedFailureDiagnostics(); |
| 473 | flushPendingError(); |
| 474 | stdoutBuffer = ''; |
| 475 | stderrBuffer = ''; |
| 476 | }, |
| 477 | get xcresultPath(): string | null { |
| 478 | return detectedXcresultPath; |
| 479 | }, |
nothing calls this directly
no test coverage detected