(&mut self)
| 475 | } |
| 476 | |
| 477 | fn reset_queue(&mut self) { |
| 478 | // Set container.[[queue]] to a new empty list. |
| 479 | self.queue.clear(); |
| 480 | // Set container.[[queueTotalSize]] to 0. |
| 481 | self.queue_total_size = 0; |
| 482 | } |
| 483 | |
| 484 | pub(super) fn readable_byte_stream_controller_close<R: ReadableStreamReader<'js>>( |
| 485 | ctx: Ctx<'js>, |
no test coverage detected