LibJS: Remove GlobalObject::{set_,}associated_realm()

This commit is contained in:
Linus Groh 2022-08-27 01:07:00 +01:00
commit dfb7588d30
Notes: sideshowbarker 2024-07-17 07:41:29 +09:00
5 changed files with 0 additions and 20 deletions

View file

@ -24,9 +24,6 @@ public:
Console& console() { return *m_console; }
Realm* associated_realm();
void set_associated_realm(Realm&);
private:
virtual bool is_global_object() const final { return true; }
@ -44,7 +41,6 @@ private:
JS_DECLARE_NATIVE_FUNCTION(unescape);
NonnullOwnPtr<Console> m_console;
WeakPtr<Realm> m_associated_realm;
};
inline GlobalObject* Shape::global_object() const