mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +00:00
LibJS: Remove this_object parameter from get/put own property functions
Specifically: - Object::get_own_properties() - Object::put_own_property() - Object::put_own_property_by_index() These APIs make no sense (and are inconsistent, get_own_property() didn't have this parameter, for example) - and as expected we were always passing in the same object we were calling the method on anyway.
This commit is contained in:
parent
5de0e0068c
commit
afc86abe24
5 changed files with 25 additions and 25 deletions
|
@ -235,7 +235,7 @@ JS_DEFINE_NATIVE_FUNCTION(ReflectObject::own_keys)
|
|||
auto* target = get_target_object_from(global_object, "ownKeys");
|
||||
if (!target)
|
||||
return {};
|
||||
return target->get_own_properties(*target, PropertyKind::Key);
|
||||
return target->get_own_properties(PropertyKind::Key);
|
||||
}
|
||||
|
||||
JS_DEFINE_NATIVE_FUNCTION(ReflectObject::prevent_extensions)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue