MCPcopy Create free account
hub / github.com/KDE/kdevelop / addToEachNode

Method addToEachNode

kdevplatform/language/duchain/ducontext.cpp:1629–1637  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1627}
1628
1629void DUContext::SearchItem::addToEachNode(const SearchItem::Ptr& other)
1630{
1631 if (other->isExplicitlyGlobal)
1632 return;
1633
1634 next.append(other);
1635 for (int a = 0; a < next.size() - 1; ++a)
1636 next[a]->addToEachNode(other);
1637}
1638
1639void DUContext::SearchItem::addToEachNode(const SearchItem::PtrList& other)
1640{

Callers 1

applyUpwardsAliasesMethod · 0.80

Calls 2

appendMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected