()
| 54196 | if (this.timeout.refresh) { |
| 54197 | this.timeout.refresh(); |
| 54198 | } |
| 54199 | } |
| 54200 | this.paused = false; |
| 54201 | this.execute(this.socket.read() || EMPTY_BUF); |
| 54202 | this.readMore(); |
| 54203 | } |
| 54204 | readMore() { |
| 54205 | while (!this.paused && this.ptr) { |
| 54206 | const chunk = this.socket.read(); |
| 54207 | if (chunk === null) { |
| 54208 | break; |
| 54209 | } |
no test coverage detected