mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 21:59:07 +00:00
LibJS: Add %TypedArray%.prototype.keys
This commit is contained in:
parent
293974c1cb
commit
fb43b778ab
Notes:
sideshowbarker
2024-07-18 11:29:21 +09:00
Author: https://github.com/Lubrsi
Commit: fb43b778ab
Pull-request: https://github.com/SerenityOS/serenity/pull/8253
3 changed files with 58 additions and 0 deletions
|
@ -0,0 +1,46 @@
|
|||
const TYPED_ARRAYS = [
|
||||
Uint8Array,
|
||||
Uint16Array,
|
||||
Uint32Array,
|
||||
Int8Array,
|
||||
Int16Array,
|
||||
Int32Array,
|
||||
Float32Array,
|
||||
Float64Array,
|
||||
];
|
||||
|
||||
const BIGINT_TYPED_ARRAYS = [BigUint64Array, BigInt64Array];
|
||||
|
||||
test("length is 0", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
expect(T.prototype.keys).toHaveLength(0);
|
||||
});
|
||||
|
||||
BIGINT_TYPED_ARRAYS.forEach(T => {
|
||||
expect(T.prototype.keys).toHaveLength(0);
|
||||
});
|
||||
});
|
||||
|
||||
test("basic functionality", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
const a = new T([30, 40, 50]);
|
||||
const it = a.keys();
|
||||
expect(it.next()).toEqual({ value: 0, done: false });
|
||||
expect(it.next()).toEqual({ value: 1, done: false });
|
||||
expect(it.next()).toEqual({ value: 2, done: false });
|
||||
expect(it.next()).toEqual({ value: undefined, done: true });
|
||||
expect(it.next()).toEqual({ value: undefined, done: true });
|
||||
expect(it.next()).toEqual({ value: undefined, done: true });
|
||||
});
|
||||
|
||||
BIGINT_TYPED_ARRAYS.forEach(T => {
|
||||
const a = new T([30n, 40n, 50n]);
|
||||
const it = a.keys();
|
||||
expect(it.next()).toEqual({ value: 0, done: false });
|
||||
expect(it.next()).toEqual({ value: 1, done: false });
|
||||
expect(it.next()).toEqual({ value: 2, done: false });
|
||||
expect(it.next()).toEqual({ value: undefined, done: true });
|
||||
expect(it.next()).toEqual({ value: undefined, done: true });
|
||||
expect(it.next()).toEqual({ value: undefined, done: true });
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue