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

LibJS: Expose TypedArray.prototype.byteLength

This commit is contained in:
Luke 2021-05-21 21:34:25 +01:00 committed by Linus Groh
parent 8004a2dc77
commit 58afd71ad2
3 changed files with 37 additions and 0 deletions

View file

@ -24,6 +24,11 @@ void TypedArrayPrototype::initialize(GlobalObject& object)
// FIXME: This should be an accessor property // FIXME: This should be an accessor property
define_native_property(vm.names.length, length_getter, nullptr, Attribute::Configurable); define_native_property(vm.names.length, length_getter, nullptr, Attribute::Configurable);
define_native_property(vm.names.buffer, buffer_getter, nullptr, Attribute::Configurable); define_native_property(vm.names.buffer, buffer_getter, nullptr, Attribute::Configurable);
<<<<<<< HEAD
=======
define_native_property(vm.names.byteLength, byte_length_getter, nullptr, Attribute::Configurable);
define_native_property(vm.names.BYTES_PER_ELEMENT, bytes_per_element_getter, nullptr, 0); // FIXME: This should just be a normal property and not a getter.
>>>>>>> 6be44bc62... LibJS: Expose TypedArray.prototype.byteLength
define_native_function(vm.names.at, at, 1, attr); define_native_function(vm.names.at, at, 1, attr);
} }
@ -85,4 +90,16 @@ JS_DEFINE_NATIVE_FUNCTION(TypedArrayPrototype::buffer_getter)
return Value(array_buffer); return Value(array_buffer);
} }
// https://tc39.es/ecma262/#sec-get-%typedarray%.prototype.bytelength
JS_DEFINE_NATIVE_FUNCTION(TypedArrayPrototype::byte_length_getter)
{
auto typed_array = typed_array_from(vm, global_object);
if (!typed_array)
return {};
auto* array_buffer = typed_array->viewed_array_buffer();
VERIFY(array_buffer);
// FIXME: If array_buffer is detached, return 0.
return Value(typed_array->byte_length());
}
} }

View file

@ -21,6 +21,7 @@ public:
private: private:
JS_DECLARE_NATIVE_GETTER(length_getter); JS_DECLARE_NATIVE_GETTER(length_getter);
JS_DECLARE_NATIVE_GETTER(buffer_getter); JS_DECLARE_NATIVE_GETTER(buffer_getter);
JS_DECLARE_NATIVE_GETTER(byte_length_getter);
JS_DECLARE_NATIVE_FUNCTION(at); JS_DECLARE_NATIVE_FUNCTION(at);
}; };

View file

@ -0,0 +1,19 @@
// Update when more typed arrays get added
const TYPED_ARRAYS = [
{ array: Uint8Array, expected: 3 },
{ array: Uint16Array, expected: 6 },
{ array: Uint32Array, expected: 12 },
{ array: Int8Array, expected: 3 },
{ array: Int16Array, expected: 6 },
{ array: Int32Array, expected: 12 },
{ array: Float32Array, expected: 12 },
{ array: Float64Array, expected: 24 },
];
test("basic functionality", () => {
TYPED_ARRAYS.forEach(T => {
const typedArray = new T.array([1, 2, 3]);
expect(Object.hasOwn(typedArray, "byteOffset")).toBeFalse();
expect(typedArray.byteLength).toBe(T.expected);
});
});