()
| 333 | } |
| 334 | } |
| 335 | #drainReportBuffer() { |
| 336 | if (this.#reportBuffer.length > 0) { |
| 337 | ArrayPrototypeForEach(this.#reportBuffer, (ast) => this.#handleReportItem(ast)); |
| 338 | this.#reportBuffer = []; |
| 339 | } |
| 340 | } |
| 341 | addToReport(item) { |
| 342 | if (kExecutionOrderedEvents.has(item.type)) { |
| 343 | this.#handleReportItem(item); |
no test coverage detected