LibJS: Implement Object.create()

This commit is contained in:
Linus Groh 2021-04-10 18:40:12 +02:00 committed by Andreas Kling
commit 9cd010167a
Notes: sideshowbarker 2024-07-18 20:34:58 +09:00
4 changed files with 87 additions and 0 deletions

View file

@ -61,6 +61,7 @@ private:
JS_DECLARE_NATIVE_FUNCTION(keys);
JS_DECLARE_NATIVE_FUNCTION(values);
JS_DECLARE_NATIVE_FUNCTION(entries);
JS_DECLARE_NATIVE_FUNCTION(create);
};
}