| 1627 | } |
| 1628 | |
| 1629 | void 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 | |
| 1639 | void DUContext::SearchItem::addToEachNode(const SearchItem::PtrList& other) |
| 1640 | { |
no test coverage detected