LibJS: Convert ProxyObject::create() to NonnullGCPtr

This commit is contained in:
Linus Groh 2022-12-13 20:49:50 +00:00
commit e0818bf21e
Notes: sideshowbarker 2024-07-17 03:25:24 +09:00
3 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@ class ProxyObject final : public FunctionObject {
JS_OBJECT(ProxyObject, FunctionObject);
public:
static ProxyObject* create(Realm&, Object& target, Object& handler);
static NonnullGCPtr<ProxyObject> create(Realm&, Object& target, Object& handler);
virtual ~ProxyObject() override = default;