LibWeb: Implement WritableStream transfer

This commit is contained in:
Timothy Flynn 2025-05-20 17:27:51 -04:00 committed by Tim Flynn
parent 312db85a84
commit cca08ad833
Notes: github-actions[bot] 2025-05-21 10:55:54 +00:00
6 changed files with 260 additions and 26 deletions

View file

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