| 65 | bool PropertyKeyPath::IsEmpty() const { return m_NodeInfos.empty(); }; |
| 66 | |
| 67 | bool PropertyKeyPath::IsExplicit() const |
| 68 | { |
| 69 | for (const auto &pos : m_NodeInfos) |
| 70 | { |
| 71 | if ((pos.type == NodeInfo::NodeType::AnySelection) || (pos.type == NodeInfo::NodeType::AnyElement)) |
| 72 | { |
| 73 | return false; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | return true; |
| 78 | }; |
| 79 | |
| 80 | bool PropertyKeyPath::HasItemSelectionWildcardsOnly() const |
| 81 | { |
no outgoing calls
no test coverage detected