(fullText: string)
| 129 | } |
| 130 | |
| 131 | append(fullText: string): void { |
| 132 | if (this.legacy) { |
| 133 | this.legacy.append(fullText); |
| 134 | return; |
| 135 | } |
| 136 | if (fullText === this.buffer) return; |
| 137 | this.buffer = fullText; |
| 138 | this.scheduleFlush(); |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Append a structured chunk (`task_update` / `plan_update` / `blocks`) to the |
nothing calls this directly
no test coverage detected