(s: State)
| 579 | s.commandTreeIdx = s.rings[7]; |
| 580 | } |
| 581 | function decodeDistanceBlockSwitch(s: State): void { |
| 582 | s.distanceBlockLength = decodeBlockTypeAndLength(s, 2, s.numDistanceBlockTypes); |
| 583 | s.distContextMapSlice = s.rings[9] << 2; |
| 584 | } |
| 585 | function maybeReallocateRingBuffer(s: State): void { |
| 586 | let newSize: number = s.maxRingBufferSize; |
| 587 | if (newSize > s.expectedTotalSize) { |
no test coverage detected
searching dependent graphs…