LibJS: Replace GlobalObject with VM in remaining AOs [Part 19/19]

This commit is contained in:
Linus Groh 2022-08-21 20:38:35 +01:00
commit 56b2ae5ac0
Notes: sideshowbarker 2024-07-17 07:53:23 +09:00
46 changed files with 173 additions and 207 deletions

View file

@ -24,7 +24,7 @@ public:
virtual ~AsyncFunctionDriverWrapper() override = default;
void visit_edges(Cell::Visitor&) override;
ThrowCompletionOr<Value> react_to_async_task_completion(VM&, GlobalObject&, Value, bool is_successful);
ThrowCompletionOr<Value> react_to_async_task_completion(VM&, Value, bool is_successful);
private:
GeneratorObject* m_generator_object { nullptr };