| 526 | } |
| 527 | |
| 528 | QList<Declaration*> DUContext::findLocalDeclarations(const IndexedIdentifier& identifier, |
| 529 | const CursorInRevision& position, |
| 530 | const TopDUContext* topContext, |
| 531 | const AbstractType::Ptr& dataType, |
| 532 | SearchFlags flags) const |
| 533 | { |
| 534 | ENSURE_CAN_READ |
| 535 | |
| 536 | DeclarationList ret; |
| 537 | findLocalDeclarationsInternal(identifier, |
| 538 | position.isValid() ? position : range().end, dataType, ret, |
| 539 | topContext ? topContext : this->topContext(), flags); |
| 540 | return ret; |
| 541 | } |
| 542 | |
| 543 | QList<Declaration*> DUContext::findLocalDeclarations(const Identifier& identifier, |
| 544 | const CursorInRevision& position, |