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

LibJS: Implement Object.getOwnPropertyNames()

This commit is contained in:
Andreas Kling 2020-03-29 01:08:25 +01:00
parent 62d5f79388
commit f95a119627
3 changed files with 36 additions and 0 deletions

View file

@ -40,6 +40,7 @@ public:
private:
virtual const char* class_name() const override { return "ObjectConstructor"; }
static Value get_own_property_names(Interpreter&);
static Value get_prototype_of(Interpreter&);
static Value set_prototype_of(Interpreter&);
};