| 1060 | } |
| 1061 | |
| 1062 | QVector<Declaration*> DUContext::clearLocalDeclarations() |
| 1063 | { |
| 1064 | auto copy = m_dynamicData->m_localDeclarations; |
| 1065 | for (Declaration* dec : std::as_const(copy)) { |
| 1066 | dec->setContext(nullptr); |
| 1067 | } |
| 1068 | |
| 1069 | return copy; |
| 1070 | } |
| 1071 | |
| 1072 | QualifiedIdentifier DUContext::scopeIdentifier(bool includeClasses) const |
| 1073 | { |
nothing calls this directly
no test coverage detected