mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb: Add ReadableStreamDefaultReader
This commit is contained in:
committed by
Linus Groh
parent
7ff657ef57
commit
222e3c32cd
Notes:
sideshowbarker
2024-07-17 08:55:54 +09:00
Author: https://github.com/mattco98 Commit: https://github.com/SerenityOS/serenity/commit/222e3c32cd Pull-request: https://github.com/SerenityOS/serenity/pull/18109 Reviewed-by: https://github.com/linusg ✅
@@ -7,6 +7,7 @@
|
||||
#include <LibWeb/Bindings/Intrinsics.h>
|
||||
#include <LibWeb/Streams/AbstractOperations.h>
|
||||
#include <LibWeb/Streams/ReadableStream.h>
|
||||
#include <LibWeb/Streams/ReadableStreamDefaultReader.h>
|
||||
#include <LibWeb/WebIDL/ExceptionOr.h>
|
||||
|
||||
namespace Web::Streams {
|
||||
@@ -37,6 +38,7 @@ void ReadableStream::visit_edges(Cell::Visitor& visitor)
|
||||
Base::visit_edges(visitor);
|
||||
visitor.visit(m_controller);
|
||||
visitor.visit(m_stored_error);
|
||||
visitor.visit(m_reader);
|
||||
}
|
||||
|
||||
// https://streams.spec.whatwg.org/#readablestream-locked
|
||||
|
||||
Reference in New Issue
Block a user