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

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

This commit is contained in:
Linus Groh 2022-08-27 01:07:00 +01:00
parent 61bd9fef7d
commit dfb7588d30
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