LibWeb: Replace GlobalObject with Realm in wrapper functions

Similar to create() in LibJS, wrap() et al. are on a low enough level to
warrant passing a Realm directly instead of relying on the current realm
from the VM, as a wrapper may need to be allocated while no JS is being
executed.
This commit is contained in:
Linus Groh 2022-08-22 18:31:08 +01:00
commit 40a70461a0
Notes: sideshowbarker 2024-07-17 07:53:19 +09:00
60 changed files with 261 additions and 235 deletions

View file

@ -52,7 +52,7 @@ public:
JS::Promise* text();
JS::Promise* array_buffer();
virtual JS::Object* create_wrapper(JS::GlobalObject&);
virtual JS::Object* create_wrapper(JS::Realm&);
ReadonlyBytes bytes() const { return m_byte_buffer.bytes(); }