mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:47:45 +00:00
LibJS: Add %TypedArray%.prototype.indexOf
This commit is contained in:
parent
da49a7a9f8
commit
6343bfa9d7
3 changed files with 92 additions and 0 deletions
|
@ -0,0 +1,44 @@
|
|||
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.indexOf).toHaveLength(1);
|
||||
|
||||
const typedArray = new T(3);
|
||||
typedArray[0] = 1;
|
||||
typedArray[1] = 2;
|
||||
typedArray[2] = 3;
|
||||
|
||||
expect(typedArray.indexOf(2)).toBe(1);
|
||||
expect(typedArray.indexOf(-1)).toBe(-1);
|
||||
expect(typedArray.indexOf(Infinity)).toBe(-1);
|
||||
expect(typedArray.indexOf(2, 2)).toBe(-1);
|
||||
expect(typedArray.indexOf(2, -2)).toBe(1);
|
||||
});
|
||||
|
||||
BIGINT_TYPED_ARRAYS.forEach(T => {
|
||||
expect(T.prototype.indexOf).toHaveLength(1);
|
||||
|
||||
const typedArray = new T(3);
|
||||
typedArray[0] = 1n;
|
||||
typedArray[1] = 2n;
|
||||
typedArray[2] = 3n;
|
||||
|
||||
expect(typedArray.indexOf(2n)).toBe(1);
|
||||
expect(typedArray.indexOf(-1n)).toBe(-1);
|
||||
expect(typedArray.indexOf(2n, 2)).toBe(-1);
|
||||
expect(typedArray.indexOf(2n, -2)).toBe(1);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue