| 830 | if (m_index) { |
| 831 | identifiers.reserve(cd->identifiersSize()); |
| 832 | FOREACH_FUNCTION_STATIC(const IndexedIdentifier &index, cd->identifiers) |
| 833 | { |
| 834 | identifiers += index.identifier().toString(options); |
| 835 | } |
| 836 | } else { |
| 837 | identifiers.reserve(dd->identifiersSize()); |
| 838 | FOREACH_FUNCTION_STATIC(const IndexedIdentifier &index, dd->identifiers) |
nothing calls this directly
no test coverage detected