(b: number)
| 289 | } |
| 290 | |
| 291 | private _addByte(b: number): void { |
| 292 | this._window.addByte(b); |
| 293 | this._output![this._outpos] = b; |
| 294 | this._needed--; |
| 295 | this._outpos++; |
| 296 | } |
| 297 | |
| 298 | private _addDist(d: number, len: number): void { |
| 299 | this._addBytes(this._window.buffer, this._window.pos - d, len); |
no test coverage detected