summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.cpp39
-rw-r--r--Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.h1
-rw-r--r--Userland/Libraries/LibJS/Tests/builtins/TypedArray/TypedArray.prototype.reduce.js39
3 files changed, 79 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.cpp b/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.cpp
index 693a3db543..4376d8fef7 100644
--- a/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.cpp
+++ b/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.cpp
@@ -37,6 +37,7 @@ void TypedArrayPrototype::initialize(GlobalObject& object)
define_native_function(vm.names.includes, includes, 1, attr);
define_native_function(vm.names.indexOf, index_of, 1, attr);
define_native_function(vm.names.lastIndexOf, last_index_of, 1, attr);
+ define_native_function(vm.names.reduce, reduce, 1, attr);
define_native_function(vm.names.some, some, 1, attr);
define_native_function(vm.names.join, join, 1, attr);
define_native_function(vm.names.keys, keys, 0, attr);
@@ -404,6 +405,44 @@ JS_DEFINE_NATIVE_FUNCTION(TypedArrayPrototype::last_index_of)
return Value(-1);
}
+// 23.2.3.20 %TypedArray%.prototype.reduce ( callbackfn [ , initialValue ] ), https://tc39.es/ecma262/#sec-%typedarray%.prototype.reduce
+JS_DEFINE_NATIVE_FUNCTION(TypedArrayPrototype::reduce)
+{
+ auto* typed_array = typed_array_from(vm, global_object);
+ if (!typed_array)
+ return {};
+
+ auto length = typed_array->array_length();
+
+ auto* callback_function = callback_from_args(global_object, vm.names.reduce.as_string());
+ if (!callback_function)
+ return {};
+
+ if (length == 0 && vm.argument_count() <= 1) {
+ vm.throw_exception<TypeError>(global_object, ErrorType::ReduceNoInitial);
+ return {};
+ }
+
+ u32 k = 0;
+ Value accumulator;
+ if (vm.argument_count() > 1) {
+ accumulator = vm.argument(1);
+ } else {
+ accumulator = typed_array->get(k);
+ ++k;
+ }
+
+ for (; k < length; ++k) {
+ auto k_value = typed_array->get(k);
+
+ accumulator = vm.call(*callback_function, js_undefined(), accumulator, k_value, Value(k), typed_array);
+ if (vm.exception())
+ return {};
+ }
+
+ return accumulator;
+}
+
// 23.2.3.25 %TypedArray%.prototype.some ( callbackfn [ , thisArg ] ), https://tc39.es/ecma262/#sec-%typedarray%.prototype.some
JS_DEFINE_NATIVE_FUNCTION(TypedArrayPrototype::some)
{
diff --git a/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.h b/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.h
index 6485d1829e..34d63af535 100644
--- a/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.h
+++ b/Userland/Libraries/LibJS/Runtime/TypedArrayPrototype.h
@@ -34,6 +34,7 @@ private:
JS_DECLARE_NATIVE_FUNCTION(includes);
JS_DECLARE_NATIVE_FUNCTION(index_of);
JS_DECLARE_NATIVE_FUNCTION(last_index_of);
+ JS_DECLARE_NATIVE_FUNCTION(reduce);
JS_DECLARE_NATIVE_FUNCTION(some);
JS_DECLARE_NATIVE_FUNCTION(join);
JS_DECLARE_NATIVE_FUNCTION(keys);
diff --git a/Userland/Libraries/LibJS/Tests/builtins/TypedArray/TypedArray.prototype.reduce.js b/Userland/Libraries/LibJS/Tests/builtins/TypedArray/TypedArray.prototype.reduce.js
new file mode 100644
index 0000000000..b338f16575
--- /dev/null
+++ b/Userland/Libraries/LibJS/Tests/builtins/TypedArray/TypedArray.prototype.reduce.js
@@ -0,0 +1,39 @@
+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.reduce).toHaveLength(1);
+
+ const typedArray = new T(3);
+ typedArray[0] = 1;
+ typedArray[1] = 2;
+ typedArray[2] = 3;
+
+ expect(typedArray.reduce((accumulator, value) => accumulator + value)).toBe(6);
+ expect(typedArray.reduce((accumulator, value) => accumulator + value, -5)).toBe(1);
+ });
+
+ BIGINT_TYPED_ARRAYS.forEach(T => {
+ expect(T.prototype.reduce).toHaveLength(1);
+
+ const typedArray = new T(3);
+ typedArray[0] = 1n;
+ typedArray[1] = 2n;
+ typedArray[2] = 3n;
+
+ expect(typedArray.reduce((accumulator, value) => accumulator + value)).toBe(6n);
+ expect(typedArray.reduce((accumulator, value) => accumulator + value, -5n)).toBe(1n);
+ });
+});