1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

LibJS: Partially implement AO CopyDataBlockBytes

Currently we do not support Shared Data Block so that part is not yet
implemented.
This commit is contained in:
Kenneth Myhra 2023-06-17 21:03:31 +02:00 committed by Andreas Kling
parent 2e5fbe8052
commit f3fb005653
2 changed files with 52 additions and 0 deletions

View file

@ -77,6 +77,7 @@ private:
Value m_detach_key;
};
void copy_data_block_bytes(ByteBuffer& to_block, u64 to_index, ByteBuffer& from_block, u64 from_index, u64 count);
ThrowCompletionOr<ArrayBuffer*> allocate_array_buffer(VM&, FunctionObject& constructor, size_t byte_length);
ThrowCompletionOr<void> detach_array_buffer(VM&, ArrayBuffer& array_buffer, Optional<Value> key = {});
ThrowCompletionOr<ArrayBuffer*> clone_array_buffer(VM&, ArrayBuffer& source_buffer, size_t source_byte_offset, size_t source_length);