1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:27:45 +00:00

LibJS: Convert Object::create() to NonnullGCPtr

This commit is contained in:
Linus Groh 2022-12-13 20:49:50 +00:00
parent f990095728
commit ddc6e139a6
45 changed files with 80 additions and 80 deletions

View file

@ -44,7 +44,7 @@ class Object : public Cell {
JS_CELL(Object, Cell);
public:
static Object* create(Realm&, Object* prototype);
static NonnullGCPtr<Object> create(Realm&, Object* prototype);
virtual void initialize(Realm&) override;
virtual ~Object();