()
| 54179 | } |
| 54180 | this.timeoutValue = value; |
| 54181 | } else if (this.timeout) { |
| 54182 | if (this.timeout.refresh) { |
| 54183 | this.timeout.refresh(); |
| 54184 | } |
| 54185 | } |
| 54186 | } |
| 54187 | resume() { |
| 54188 | if (this.socket.destroyed || !this.paused) { |
| 54189 | return; |
| 54190 | } |
| 54191 | assert2(this.ptr != null); |
| 54192 | assert2(currentParser == null); |
| 54193 | this.llhttp.llhttp_resume(this.ptr); |
| 54194 | assert2(this.timeoutType === TIMEOUT_BODY); |
| 54195 | if (this.timeout) { |
| 54196 | if (this.timeout.refresh) { |
| 54197 | this.timeout.refresh(); |
| 54198 | } |
| 54199 | } |
| 54200 | this.paused = false; |
no test coverage detected