| 3395 | |
| 3396 | |
| 3397 | void AdvancedFunctionAnalysisDataRequestor::SetFunction(Function* func) |
| 3398 | { |
| 3399 | if (m_func) |
| 3400 | m_func->ReleaseAdvancedAnalysisData(); |
| 3401 | |
| 3402 | m_func = func; |
| 3403 | |
| 3404 | if (m_func) |
| 3405 | m_func->RequestAdvancedAnalysisData(); |
| 3406 | } |
nothing calls this directly
no test coverage detected