| 368 | clearViewPools(); |
| 369 | for (const auto& runtime : getAllRuntimes()) { |
| 370 | runtime->removeUnusedResources(); |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | void RuntimeManager::applicationWillTerminate() { |
| 375 | VALDI_INFO(*_logger, "Application will terminate"); |
| 376 | Valdi::setApplicationShuttingDown(true); |
| 377 | stopDebuggerServices(); |
| 378 | |
| 379 | for (const auto& runtime : getAllRuntimes()) { |
| 380 | runtime->getJavaScriptRuntime()->partialTeardown(); |
| 381 | } |
| 382 | } |