LibWeb: Add ReadableStreamBYOBReader to ReadableStreamReader type

This commit is contained in:
Matthew Olsson 2023-04-09 01:26:48 -07:00 committed by Andreas Kling
commit b57b3c54cc
Notes: sideshowbarker 2024-07-17 06:39:26 +09:00
8 changed files with 59 additions and 53 deletions

View file

@ -45,8 +45,6 @@ public:
SinglyLinkedList<NonnullRefPtr<ReadRequest>>& read_requests() { return m_read_requests; }
virtual bool is_default_reader() const override { return true; }
private:
explicit ReadableStreamDefaultReader(JS::Realm&);