()
| 20 | protected _buffer: unknown[] | null = []; |
| 21 | |
| 22 | _read() { |
| 23 | if (this._buffer === null) { |
| 24 | this.push(null); |
| 25 | return; |
| 26 | } |
| 27 | |
| 28 | for (const val of this._buffer) { |
| 29 | this.push(val); |
| 30 | } |
| 31 | |
| 32 | this._buffer = []; |
| 33 | } |
| 34 | |
| 35 | pushValue(val: unknown): void { |
| 36 | this._buffer?.push(val); |
nothing calls this directly
no outgoing calls
no test coverage detected