| 603 | } |
| 604 | |
| 605 | void Declaration::updateCodeModel() |
| 606 | { |
| 607 | DUCHAIN_D(Declaration); |
| 608 | if (!d->m_identifier.isEmpty() && d->m_inSymbolTable) { |
| 609 | QualifiedIdentifier id(qualifiedIdentifier()); |
| 610 | CodeModel::self().updateItem(url(), id, kindForDeclaration(this)); |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | void Declaration::setInSymbolTable(bool inSymbolTable) |
| 615 | { |
nothing calls this directly
no test coverage detected