LibWeb+LibJS: Use JS::GCPtr for pointers to GC-allocated objects

Fixes warnings found by LibJSGCVerifier
This commit is contained in:
Aliaksandr Kalenik 2023-12-11 12:23:04 +01:00 committed by Alexander Kalenik
commit 6ac43274b2
Notes: sideshowbarker 2024-07-17 07:20:49 +09:00
14 changed files with 31 additions and 31 deletions

View file

@ -14,7 +14,7 @@
namespace JS::Bytecode {
struct UnwindInfo {
Executable const* executable;
JS::GCPtr<Executable const> executable;
JS::GCPtr<Environment> lexical_environment;
bool handler_called { false };