| 680 | } |
| 681 | |
| 682 | QualifiedIdentifier::QualifiedIdentifier(uint index) |
| 683 | : m_index(index) |
| 684 | , cd(LockedItemRepository::read<IndexedQualifiedIdentifier>( |
| 685 | [index](const QualifiedIdentifierRepository& repo) { return repo.itemFromIndex(index); })) |
| 686 | { |
| 687 | } |
| 688 | |
| 689 | QualifiedIdentifier::QualifiedIdentifier(QStringView id, bool isExpression) |
| 690 | { |
nothing calls this directly
no test coverage detected