LibJS: Implement Object.getOwnPropertyNames()

This commit is contained in:
Andreas Kling 2020-03-29 01:08:25 +01:00
commit f95a119627
Notes: sideshowbarker 2024-07-19 08:05:06 +09:00
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&);
};