LibJS: Add the TypedArray.prototype.toString property

This is initialized to be the same function object as the initial value
of the Array.prototype.toString generic function.
This commit is contained in:
Idan Horowitz 2021-06-17 18:26:11 +03:00 committed by Linus Groh
parent 57db27bcc4
commit d5c836dd64
Notes: sideshowbarker 2024-07-18 12:03:37 +09:00

View file

@ -35,6 +35,9 @@ void TypedArrayPrototype::initialize(GlobalObject& object)
define_native_function(vm.names.join, join, 1, attr);
define_native_accessor(vm.well_known_symbol_to_string_tag(), to_string_tag_getter, nullptr, Attribute::Configurable);
// 23.2.3.29 %TypedArray%.prototype.toString ( ), https://tc39.es/ecma262/#sec-%typedarray%.prototype.tostring
define_property(vm.names.toString, global_object().array_prototype()->get_without_side_effects(vm.names.toString), attr);
}
TypedArrayPrototype::~TypedArrayPrototype()