| 88 | } |
| 89 | |
| 90 | QString NamespaceAliasDeclaration::toString() const |
| 91 | { |
| 92 | DUCHAIN_D(NamespaceAliasDeclaration); |
| 93 | if (indexedIdentifier() != globalIndexedImportIdentifier()) |
| 94 | return i18n("Import %1 as %2", d->m_importIdentifier.identifier().toString(), identifier().toString()); |
| 95 | else |
| 96 | return i18n("Import %1", d->m_importIdentifier.identifier().toString()); |
| 97 | } |
| 98 | } |
nothing calls this directly
no test coverage detected