()
| 164 | } |
| 165 | |
| 166 | clear(): void { |
| 167 | // Recreate input stream to ensure clean state |
| 168 | this.#input = new MuteStream(); |
| 169 | this.#input.unmute(); |
| 170 | // Reset output tracking |
| 171 | this.#outputs = []; |
| 172 | this.#currentOutput = null; |
| 173 | this.#activePromise = null; |
| 174 | this.#rendersConsumed = 0; |
| 175 | this.#renderResolve = null; |
| 176 | } |
| 177 | } |
no outgoing calls
no test coverage detected