| 98 | return m_foundBindingLoop; |
| 99 | } |
| 100 | bool GammaRay::BindingNode::isPartOfBindingLoop() const |
| 101 | { |
| 102 | if (m_foundBindingLoop) { |
| 103 | return true; |
| 104 | } |
| 105 | for (const auto &dependency : m_dependencies) { |
| 106 | if (dependency->isPartOfBindingLoop()) { |
| 107 | return true; |
| 108 | } |
| 109 | } |
| 110 | return false; |
| 111 | } |
| 112 | GammaRay::SourceLocation GammaRay::BindingNode::sourceLocation() const |
| 113 | { |
| 114 | return m_sourceLocation; |
no outgoing calls