LibWeb: Implement ReadableStream transfer

This commit is contained in:
Timothy Flynn 2025-05-20 17:20:22 -04:00 committed by Tim Flynn
parent 7e225b496d
commit 312db85a84
Notes: github-actions[bot] 2025-05-21 10:56:01 +00:00
9 changed files with 511 additions and 28 deletions

View file

@ -49,6 +49,7 @@ enum class TransferType : u8 {
MessagePort = 1,
ArrayBuffer = 2,
ResizableArrayBuffer = 3,
ReadableStream = 4,
};
WebIDL::ExceptionOr<SerializationRecord> structured_serialize(JS::VM& vm, JS::Value);