()
| 357 | this.#drainReportBuffer(); |
| 358 | } |
| 359 | report() { |
| 360 | this.drain(); |
| 361 | const skipReporting = this.#skipReporting(); |
| 362 | if (!skipReporting) { |
| 363 | super.reportStarted(); |
| 364 | super.report(); |
| 365 | } |
| 366 | } |
| 367 | parseMessage(readData) { |
| 368 | let dataLength = TypedArrayPrototypeGetLength(readData); |
| 369 | if (this.#pendingPartialV8Header) { |
nothing calls this directly
no test coverage detected