(s: State)
| 116 | return 0; |
| 117 | } |
| 118 | function enableLargeWindow(s: State): number { |
| 119 | if (s.runningState !== 1) { |
| 120 | return makeError(s, -24); |
| 121 | } |
| 122 | s.isLargeWindow = 1; |
| 123 | return 0; |
| 124 | } |
| 125 | function attachDictionaryChunk(s: State, data: Int8Array): number { |
| 126 | if (s.runningState !== 1) { |
| 127 | return makeError(s, -24); |
nothing calls this directly
no test coverage detected
searching dependent graphs…