| 3097 | }; |
| 3098 | return out; |
| 3099 | } |
| 3100 | |
| 3101 | std::vector<SharedViewNode> ViewNode::copyChildrenWithDebugId(const StringBox& nodeId) const { |
| 3102 | std::vector<SharedViewNode> out; |
| 3103 | for (auto* child : *this) { |
| 3104 | if (child->getDebugId() == nodeId) { |
| 3105 | out.emplace_back(strongSmallRef(child)); |
| 3106 | } |
| 3107 | } |
| 3108 |
no test coverage detected