|
@@ -62,6 +62,7 @@ void ArrayPrototype::initialize(GlobalObject& global_object)
|
|
define_native_function(vm.names.values, values, 0, attr);
|
|
define_native_function(vm.names.values, values, 0, attr);
|
|
define_native_function(vm.names.flat, flat, 0, attr);
|
|
define_native_function(vm.names.flat, flat, 0, attr);
|
|
define_native_function(vm.names.at, at, 1, attr);
|
|
define_native_function(vm.names.at, at, 1, attr);
|
|
|
|
+ define_native_function(vm.names.keys, keys, 0, attr);
|
|
|
|
|
|
// Use define_property here instead of define_native_function so that
|
|
// Use define_property here instead of define_native_function so that
|
|
// Object.is(Array.prototype[Symbol.iterator], Array.prototype.values)
|
|
// Object.is(Array.prototype[Symbol.iterator], Array.prototype.values)
|
|
@@ -1033,6 +1034,16 @@ JS_DEFINE_NATIVE_FUNCTION(ArrayPrototype::values)
|
|
return ArrayIterator::create(global_object, this_object, Object::PropertyKind::Value);
|
|
return ArrayIterator::create(global_object, this_object, Object::PropertyKind::Value);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+// 23.1.3.16 Array.prototype.keys ( ), https://tc39.es/ecma262/#sec-array.prototype.keys
|
|
|
|
+JS_DEFINE_NATIVE_FUNCTION(ArrayPrototype::keys)
|
|
|
|
+{
|
|
|
|
+ auto* this_object = vm.this_value(global_object).to_object(global_object);
|
|
|
|
+ if (!this_object)
|
|
|
|
+ return {};
|
|
|
|
+
|
|
|
|
+ return ArrayIterator::create(global_object, this_object, Object::PropertyKind::Key);
|
|
|
|
+}
|
|
|
|
+
|
|
static void recursive_array_flat(VM& vm, GlobalObject& global_object, Array& new_array, Object& array, double depth)
|
|
static void recursive_array_flat(VM& vm, GlobalObject& global_object, Array& new_array, Object& array, double depth)
|
|
{
|
|
{
|
|
auto array_length = length_of_array_like(global_object, array);
|
|
auto array_length = length_of_array_like(global_object, array);
|