| 23 | } |
| 24 | |
| 25 | Declaration* LocalIndexedDeclaration::data(TopDUContext* top) const |
| 26 | { |
| 27 | if (!m_declarationIndex) |
| 28 | return nullptr; |
| 29 | Q_ASSERT(top); |
| 30 | return top->m_dynamicData->declarationForIndex(m_declarationIndex); |
| 31 | } |
| 32 | |
| 33 | bool LocalIndexedDeclaration::isLoaded(TopDUContext* top) const |
| 34 | { |
nothing calls this directly
no test coverage detected