1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 18:07:35 +00:00

LibJS: Implement Object.getOwnPropertyDescriptors()

This commit is contained in:
Idan Horowitz 2021-07-06 19:41:54 +03:00 committed by Linus Groh
parent 0f91883b17
commit 5e621e494f
3 changed files with 37 additions and 0 deletions

View file

@ -29,6 +29,7 @@ private:
JS_DECLARE_NATIVE_FUNCTION(define_properties);
JS_DECLARE_NATIVE_FUNCTION(is);
JS_DECLARE_NATIVE_FUNCTION(get_own_property_descriptor);
JS_DECLARE_NATIVE_FUNCTION(get_own_property_descriptors);
JS_DECLARE_NATIVE_FUNCTION(get_own_property_names);
JS_DECLARE_NATIVE_FUNCTION(get_own_property_symbols);
JS_DECLARE_NATIVE_FUNCTION(get_prototype_of);