(taskId: string)
| 104 | #flushResolve: (() => void) | null = null |
| 105 | |
| 106 | constructor(taskId: string) { |
| 107 | this.#path = getTaskOutputPath(taskId) |
| 108 | } |
| 109 | |
| 110 | append(content: string): void { |
| 111 | if (this.#capped) { |
nothing calls this directly
no test coverage detected