| 1116 | } |
| 1117 | |
| 1118 | IndexedIdentifier QualifiedIdentifier::indexedAt(int i) const |
| 1119 | { |
| 1120 | if (m_index) { |
| 1121 | Q_ASSERT(i >= 0 && i < ( int )cd->identifiersSize()); |
| 1122 | return cd->identifiers()[i]; |
| 1123 | } else { |
| 1124 | Q_ASSERT(i >= 0 && i < ( int )dd->identifiersSize()); |
| 1125 | return dd->identifiers()[i]; |
| 1126 | } |
| 1127 | } |
| 1128 | |
| 1129 | void QualifiedIdentifier::makeConstant() const |
| 1130 | { |