| 8834 | } |
| 8835 | |
| 8836 | void RunContext::handleUnfinishedSections() { |
| 8837 | // If sections ended prematurely due to an exception we stored their |
| 8838 | // infos here so we can tear them down outside the unwind process. |
| 8839 | for (auto it = m_unfinishedSections.rbegin(), |
| 8840 | itEnd = m_unfinishedSections.rend(); |
| 8841 | it != itEnd; |
| 8842 | ++it) |
| 8843 | sectionEnded(*it); |
| 8844 | m_unfinishedSections.clear(); |
| 8845 | } |
| 8846 | |
| 8847 | void RunContext::handleExpr( |
| 8848 | AssertionInfo const& info, |
nothing calls this directly
no outgoing calls
no test coverage detected