| 10367 | } |
| 10368 | |
| 10369 | void RunContext::handleUnfinishedSections() { |
| 10370 | // If sections ended prematurely due to an exception we stored their |
| 10371 | // infos here so we can tear them down outside the unwind process. |
| 10372 | for (auto it = m_unfinishedSections.rbegin(), |
| 10373 | itEnd = m_unfinishedSections.rend(); |
| 10374 | it != itEnd; |
| 10375 | ++it) |
| 10376 | sectionEnded(*it); |
| 10377 | m_unfinishedSections.clear(); |
| 10378 | } |
| 10379 | |
| 10380 | void RunContext::handleExpr( |
| 10381 | AssertionInfo const& info, |
nothing calls this directly
no outgoing calls
no test coverage detected