| 821 | } |
| 822 | |
| 823 | DUContext* TopDUContextDynamicData::contextForIndex(uint index) const |
| 824 | { |
| 825 | if (!m_dataLoaded) |
| 826 | loadData(); |
| 827 | |
| 828 | if (index == 0) { |
| 829 | return m_topContext; |
| 830 | } |
| 831 | |
| 832 | return m_contexts.itemForIndex(index); |
| 833 | } |
| 834 | |
| 835 | Declaration* TopDUContextDynamicData::declarationForIndex(uint index) const |
| 836 | { |
no test coverage detected