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

LibJS: Expose BYTES_PER_ELEMENT on each TypedArray

This commit is contained in:
Luke 2021-05-21 21:25:09 +01:00 committed by Linus Groh
parent 7d12f49e74
commit 6f1688279a
2 changed files with 20 additions and 0 deletions

View file

@ -194,6 +194,8 @@ void TypedArrayBase::visit_edges(Visitor& visitor)
PrototypeName::PrototypeName(GlobalObject& global_object) \
: Object(*global_object.typed_array_prototype()) \
{ \
auto& vm = this->vm(); \
define_property(vm.names.BYTES_PER_ELEMENT, Value((i32)sizeof(Type)), 0); \
} \
PrototypeName::~PrototypeName() { } \
\