()
| 7234 | this.readMore(); |
| 7235 | } |
| 7236 | readMore() { |
| 7237 | while (!this.paused && this.ptr) { |
| 7238 | const chunk = this.socket.read(); |
| 7239 | if (chunk === null) { |
| 7240 | break; |
| 7241 | } |
| 7242 | this.execute(chunk); |
| 7243 | } |
| 7244 | } |
| 7245 | /** |
| 7246 | * @param {Buffer} chunk |
| 7247 | */ |
no test coverage detected