LibJS: Make it possible to visit the edges of an ExecutionContext

This commit is contained in:
Luke Wilde 2022-12-11 18:24:33 +00:00 committed by Linus Groh
commit 6431dd7904
Notes: sideshowbarker 2024-07-17 07:08:37 +09:00
2 changed files with 19 additions and 0 deletions

View file

@ -26,6 +26,8 @@ struct ExecutionContext {
[[nodiscard]] ExecutionContext copy() const;
void visit_edges(Cell::Visitor&);
private:
explicit ExecutionContext(MarkedVector<Value> existing_arguments);