mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:48:10 +00:00
LibJS: Add the DataView built-in object
This commit is contained in:
parent
5b2255291e
commit
e4d267d4fb
15 changed files with 351 additions and 0 deletions
34
Userland/Libraries/LibJS/Runtime/DataView.cpp
Normal file
34
Userland/Libraries/LibJS/Runtime/DataView.cpp
Normal file
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibJS/Runtime/DataView.h>
|
||||
|
||||
namespace JS {
|
||||
|
||||
DataView* DataView::create(GlobalObject& global_object, ArrayBuffer* viewed_buffer, size_t byte_length, size_t byte_offset)
|
||||
{
|
||||
return global_object.heap().allocate<DataView>(global_object, *global_object.data_view_prototype(), viewed_buffer, byte_length, byte_offset);
|
||||
}
|
||||
|
||||
DataView::DataView(Object& prototype, ArrayBuffer* viewed_buffer, size_t byte_length, size_t byte_offset)
|
||||
: Object(prototype)
|
||||
, m_viewed_array_buffer(viewed_buffer)
|
||||
, m_byte_length(byte_length)
|
||||
, m_byte_offset(byte_offset)
|
||||
{
|
||||
}
|
||||
|
||||
DataView::~DataView()
|
||||
{
|
||||
}
|
||||
|
||||
void DataView::visit_edges(Visitor& visitor)
|
||||
{
|
||||
Object::visit_edges(visitor);
|
||||
visitor.visit(m_viewed_array_buffer);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue