()
| 6094 | this.readMore(); |
| 6095 | } |
| 6096 | readMore() { |
| 6097 | while (!this.paused && this.ptr) { |
| 6098 | const chunk = this.socket.read(); |
| 6099 | if (chunk === null) { |
| 6100 | break; |
| 6101 | } |
| 6102 | this.execute(chunk); |
| 6103 | } |
| 6104 | } |
| 6105 | execute(data) { |
| 6106 | assert(this.ptr != null); |
| 6107 | assert(currentParser == null); |