1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

LibJS: Visit GC allocated members of ModuleEnvironment

This commit is contained in:
networkException 2022-10-03 02:27:40 +02:00 committed by Andreas Kling
parent a4ccdce011
commit 93464d4e41
2 changed files with 9 additions and 0 deletions

View file

@ -30,6 +30,8 @@ public:
private:
explicit ModuleEnvironment(Environment* outer_environment);
virtual void visit_edges(Visitor&) override;
struct IndirectBinding {
FlyString name;
Module* module;