| 510 | } |
| 511 | |
| 512 | void DUContext::setPropagateDeclarations(bool propagate) |
| 513 | { |
| 514 | ENSURE_CAN_WRITE |
| 515 | DUCHAIN_D_DYNAMIC(DUContext); |
| 516 | |
| 517 | if (propagate == d->m_propagateDeclarations) |
| 518 | return; |
| 519 | |
| 520 | d->m_propagateDeclarations = propagate; |
| 521 | } |
| 522 | |
| 523 | bool DUContext::isPropagateDeclarations() const |
| 524 | { |
no outgoing calls
no test coverage detected