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

LibJS: Add %TypedArray%.prototype.fill

This commit is contained in:
Idan Horowitz 2021-07-08 03:53:28 +03:00 committed by Linus Groh
parent a9de3b1d8f
commit 3b9886949f
3 changed files with 122 additions and 0 deletions

View file

@ -0,0 +1,57 @@
const TYPED_ARRAYS = [
Uint8Array,
Uint8ClampedArray,
Uint16Array,
Uint32Array,
Int8Array,
Int16Array,
Int32Array,
Float32Array,
Float64Array,
];
const BIGINT_TYPED_ARRAYS = [BigUint64Array, BigInt64Array];
test("basic functionality", () => {
TYPED_ARRAYS.forEach(T => {
expect(T.prototype.fill).toHaveLength(1);
const typedArray = new T(3);
typedArray[0] = 1;
typedArray[1] = 2;
typedArray[2] = 3;
expect(typedArray.fill(0)).toBe(typedArray);
expect(typedArray[0]).toBe(0);
expect(typedArray[1]).toBe(0);
expect(typedArray[2]).toBe(0);
expect(typedArray.fill(5, 1, 2)).toBe(typedArray);
expect(typedArray[0]).toBe(0);
expect(typedArray[1]).toBe(5);
expect(typedArray[2]).toBe(0);
});
BIGINT_TYPED_ARRAYS.forEach(T => {
expect(T.prototype.fill).toHaveLength(1);
const typedArray = new T(3);
typedArray[0] = 1n;
typedArray[1] = 2n;
typedArray[2] = 3n;
expect(typedArray.fill(0n)).toBe(typedArray);
expect(typedArray[0]).toBe(0n);
expect(typedArray[1]).toBe(0n);
expect(typedArray[2]).toBe(0n);
expect(typedArray.fill(5n, 1, 2)).toBe(typedArray);
expect(typedArray[0]).toBe(0n);
expect(typedArray[1]).toBe(5n);
expect(typedArray[2]).toBe(0n);
});
});