| 26 | StandaloneView::~StandaloneView() = default; |
| 27 | |
| 28 | Ref<StandaloneView> StandaloneView::getChild(size_t index) const { |
| 29 | SC_ASSERT(index < _children.size()); |
| 30 | |
| 31 | return _children[index]; |
| 32 | } |
| 33 | |
| 34 | void StandaloneView::removeFromParent() { |
| 35 | auto parent = getParent(); |
no test coverage detected