mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-08 10:01:53 +00:00
LibJS: Add missing visit for CyclicModule::m_evaluation_error
This commit is contained in:
parent
852e8ff12f
commit
c5a239b8c4
Notes:
github-actions[bot]
2025-04-05 19:35:13 +00:00
Author: https://github.com/awesomekling
Commit: c5a239b8c4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4240
1 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,8 @@ void CyclicModule::visit_edges(Cell::Visitor& visitor)
|
|||
visitor.visit(m_async_parent_modules);
|
||||
for (auto const& loaded_module : m_loaded_modules)
|
||||
visitor.visit(loaded_module.module);
|
||||
if (m_evaluation_error.is_error())
|
||||
visitor.visit(m_evaluation_error.error_value());
|
||||
}
|
||||
|
||||
void GraphLoadingState::visit_edges(Cell::Visitor& visitor)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue