| 121 | |
| 122 | |
| 123 | SymbolRef GenericImportsModel::getSymbol(const QModelIndex& index) |
| 124 | { |
| 125 | if (!index.isValid() || index.row() >= (int)m_entries.size()) |
| 126 | return nullptr; |
| 127 | return m_entries[index.row()]; |
| 128 | } |
| 129 | |
| 130 | |
| 131 | QString GenericImportsModel::getNamespace(SymbolRef sym) const |
no test coverage detected