LibJS: Add Object.{keys,values,entries}()

This commit is contained in:
mattco98 2020-04-29 18:59:23 -07:00 committed by Andreas Kling
commit 683a0696f3
Notes: sideshowbarker 2024-07-19 07:10:01 +09:00
7 changed files with 250 additions and 0 deletions

View file

@ -48,6 +48,9 @@ private:
static Value get_own_property_names(Interpreter&);
static Value get_prototype_of(Interpreter&);
static Value set_prototype_of(Interpreter&);
static Value keys(Interpreter&);
static Value values(Interpreter&);
static Value entries(Interpreter&);
};
}