(s: State)
| 162 | return 0; |
| 163 | } |
| 164 | function close(s: State): number { |
| 165 | if (s.runningState === 0) { |
| 166 | return makeError(s, -25); |
| 167 | } |
| 168 | if (s.runningState > 0) { |
| 169 | s.runningState = 11; |
| 170 | } |
| 171 | return 0; |
| 172 | } |
| 173 | function decodeVarLenUnsignedByte(s: State): number { |
| 174 | if (s.bitOffset >= 16) { |
| 175 | s.accumulator32 = (s.shortBuffer[s.halfOffset++] << 16) | (s.accumulator32 >>> 16); |
no test coverage detected
searching dependent graphs…