(&mut self)
| 488 | } |
| 489 | |
| 490 | fn reset_queue(&mut self) { |
| 491 | // Set container.[[queue]] to a new empty list. |
| 492 | self.queue.clear(); |
| 493 | // Set container.[[queueTotalSize]] to 0. |
| 494 | self.queue_total_size = 0; |
| 495 | } |
| 496 | |
| 497 | pub(super) fn readable_byte_stream_controller_close<R: ReadableStreamReader<'js>>( |
| 498 | ctx: Ctx<'js>, |
no test coverage detected