| 1101 | } |
| 1102 | |
| 1103 | void DUContext::setLocalScopeIdentifier(const QualifiedIdentifier& identifier) |
| 1104 | { |
| 1105 | ENSURE_CAN_WRITE |
| 1106 | bool wasInSymbolTable = inSymbolTable(); |
| 1107 | setInSymbolTable(false); |
| 1108 | d_func_dynamic()->m_scopeIdentifier = identifier; |
| 1109 | setInSymbolTable(wasInSymbolTable); |
| 1110 | } |
| 1111 | |
| 1112 | QualifiedIdentifier DUContext::localScopeIdentifier() const |
| 1113 | { |
no outgoing calls