get node
| 183 | |
| 184 | // get node |
| 185 | AFINode* AFNodeManager::GetNode(const std::string& name) const |
| 186 | { |
| 187 | auto index = GetIndex(name); |
| 188 | ARK_ASSERT_RET_VAL(index > 0, nullptr); |
| 189 | |
| 190 | return GetNode(index); |
| 191 | } |
| 192 | |
| 193 | AFINode* AFNodeManager::GetNode(const uint32_t index) const |
| 194 | { |
nothing calls this directly
no test coverage detected