| 89 | } |
| 90 | |
| 91 | DummyView getRootView(Valdi::SharedViewNodeTree& viewNodeTree) { |
| 92 | auto rootView = viewNodeTree->getRootView(); |
| 93 | if (rootView == nullptr) { |
| 94 | throw Valdi::Exception("No root view node in that context"); |
| 95 | } |
| 96 | return getDummyView(rootView); |
| 97 | } |
| 98 | |
| 99 | Valdi::ViewNodePath parseNodePath(std::string_view nodePath) { |
| 100 | auto result = Valdi::ViewNodePath::parse(nodePath); |
no test coverage detected